Files
backend/resources/views/excel/CurrentActivities/Hefaz/Province.blade.php

76 lines
4.6 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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 colspan="7" style="background-color: #daeef3;border-right: 1px solid black;border-left: 1px solid black;;"></th>
</tr>
<tr>
<th colspan="7" style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;font-size: 13;">
تعداد و احجام فعالیت های روزانه و جاری راهداری ثبت شده از تاریخ
{{verta($fromDate)->format('Y/n/j')}}
تا
تاریخ
{{verta($toDate)->format('Y/n/j')}}
</th>
</tr>
<tr>
<th colspan="7" style="background-color: #daeef3;border-right: 1px solid black;border-left: 1px solid black;;"></th>
</tr>
<tr>
<th rowspan="3" style="background-color: #ebf1de;border:1px solid black;text-align: center;">اداره کل</th>
<th colspan="6" style="background-color: #ebf1de;border:1px solid black;text-align: center;">فعالیت‌های حفاظ</th>
</tr>
<tr>
<th colspan="2" style="background-color: #c4d79b;border: 1px solid black; text-align:center;">ارتقای حفاظ موجود میانی راه ها با حفاظ های مرسوم یا سایر روش ها</th>
<th colspan="2" style="background-color: #c4d79b;border: 1px solid black; text-align:center;">ارتقای حفاظ موجود پل ها و پرتگاه ها با حفاظ های مرسوم یا سایر روش ها</th>
<th colspan="2" style="background-color: #c4d79b;border: 1px solid black; text-align:center;">بهسازی حفاظ های موجود و آسیب دیده</th>
</tr>
<tr>
<th style="background-color: #fde9d9;border: 1px solid black;text-align: center;">تعداد</th>
<th style="background-color: #fde9d9;border: 1px solid black;text-align: center;">مجموع</th>
<th style="background-color: #fde9d9;border: 1px solid black;text-align: center;">تعداد</th>
<th style="background-color: #fde9d9;border: 1px solid black;text-align: center;">مجموع</th>
<th style="background-color: #fde9d9;border: 1px solid black;text-align: center;">تعداد</th>
<th style="background-color: #fde9d9;border: 1px solid black;text-align: center;">مجموع</th>
</tr>
</thead>
<tbody>
@foreach ($country as $value)
<tr>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">کشوری</td>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">{{$value->MianiCount}}</td>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">{{$value->MianiSum}}</td>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">{{$value->PolCount}}</td>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">{{$value->PolSum}}</td>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">{{$value->BehsaziCount}}</td>
<td style="border: 1px solid black;text-align: center;background-color:#DAEEF3;">{{$value->BehsaziSum}}</td>
</tr>
@endforeach
@foreach ($data as $item)
<tr>
<td style="border: 1px solid black;text-align: center;">{{$item->province_fa}}</td>
<td style="border: 1px solid black;text-align: center;">{{$item->MianiCount}}</td>
<td style="border: 1px solid black;text-align: center;">{{$item->MianiSum}}</td>
<td style="border: 1px solid black;text-align: center;">{{$item->PolCount}}</td>
<td style="border: 1px solid black;text-align: center;">{{$item->PolSum}}</td>
<td style="border: 1px solid black;text-align: center;">{{$item->BehsaziCount}}</td>
<td style="border: 1px solid black;text-align: center;">{{$item->BehsaziSum}}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>