Files
backend/resources/views/axisReport/road-observed.blade.php

75 lines
4.7 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="13"></th>
</tr>
<tr>
<th style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;" colspan="13">
گشت های راهداری و ترابری ثبت شده در محور
از تاریخ
{{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="13"></th>
</tr>
<tr>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">کد پیگیری</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">اداره کل</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">شهرستان</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">نوع گزارش</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">موضوع گزارش</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">توضیح گزارش</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">شماره تماس گیرنده</th>
<th rowspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">تاریخ ثبت گزارش</th>
<th colspan="2" style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">موقعیت مکانی</th>
<th rowspan="2" style="border: 1px solid black;background-color: #00b050;text-align: center;font-weight: bold;">اقدامات</th>
<th rowspan="2" style="border: 1px solid black;background-color: #00b050;text-align: center;font-weight: bold;">تاریخ رسیدگی</th>
<th rowspan="2" style="border: 1px solid black;background-color: #00b050;text-align: center;font-weight: bold;">توضیحات</th>
</tr>
<tr>
<th style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">طول</th>
<th style="border: 1px solid black;background-color: #ff0000;text-align: center;font-weight: bold;">عرض</th>
</tr>
</thead>
<tbody>
@foreach ($data as $item)
<tr>
<td style="text-align: center;border: 1px solid black;;">{{$item->AutoID}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->ProvinceName}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->TownName}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->FeatureTypeTitle}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->Title}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->Description}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->MobileForSendEventSms}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->StartTime_DateTime_fa}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->lat}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->lng}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->rms_description}}</td>
<td style="text-align: center;border: 1px solid black;;">{{$item->updated_at_fa}}</td>
<td style="text-align: center;border: 1px solid black;;">----</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>