File: //home/armgroup/libs/resources/views/vendor/datatables/print.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<title>پرینت جدول</title>
<meta charset="UTF-8">
<meta name=description content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{{ mix('css/admin.css') }}"/>
<style>
body {margin: 20px; font-family: Vazir;}
</style>
</head>
<body dir="rtl">
<table class="table table-bordered table-condensed table-striped">
@foreach($data as $row)
@if ($loop->first)
<tr>
@foreach($row as $key => $value)
<th style="text-align: right;">{!! $key !!}</th>
@endforeach
</tr>
@endif
<tr>
@foreach($row as $key => $value)
@if(is_string($value) || is_numeric($value))
<td>{!! $value !!}</td>
@else
<td></td>
@endif
@endforeach
</tr>
@endforeach
</table>
</body>
</html>