Files
backend/resources/views/axisReport/activity-reports.blade.php
2024-02-01 09:53:53 +00:00

66 lines
3.9 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>فعالیت روزانه و جاری</title>
</head>
<body dir="rtl">
<table>
<thead>
<tr>
<th style="background-color: #DAEEF3;text-align: center;border-right: 1px solid black;font-weight:bolder;" colspan="10"></th>
</tr>
<tr>
<th style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;" colspan="10">فهرست فعالیت های ثبت شده در محور
از تاریخ
{{verta($dateTo)->format('Y/n/j')}}
تا تاریخ
{{verta($dateFrom)->format('Y/n/j')}}
</th>
</tr>
<tr>
<th style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;" colspan="10"></th>
</tr>
<tr>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">اداره کل</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">کاربر ثبت کننده</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">نوع فعالیت</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">آیتم فعالیت</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">ریز فعالیت</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">حجم فعالیت</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">واحد</th>
<th rowspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">تاریخ ثبت</th>
<th colspan="2" style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">موقعیت</th>
</tr>
<tr>
<th style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">طول</th>
<th style="border: 1px solid black;background-color: #eaf1dd;text-align: center;font-weight: bold;">عرض</th>
</tr>
</thead>
<tbody>
@foreach ($array as $item)
<tr>
<td style="text-align: center;border:1px solid black;">{{$item['province_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['user']}}</td>
<td style="text-align: center;border:1px solid black;">فعالیت روزانه و جاری</td>
<td style="text-align: center;border:1px solid black;">{{$item['item_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['sub_item_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['sub_item_data']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['unit_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['created_at_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['start_lat']}}</td>
<td style="text-align: center;border:1px solid black;">{{$item['start_lng']}}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>