Files
backend/resources/views/excel/Village/summaryAccidentPerformanceCity.blade.php

91 lines
3.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>
<style>
table,
th,
td {
border: 1px solid black;
}
</style>
</head>
<body dir="rtl" style="text-align: center;">
<table>
<thead>
<tr>
<th colspan="7"
style="background-color: #DAEEF3;text-align: center;border-right: 1px solid black;font-weight:bolder;">
تاریخ دریافت گزارش: {{ verta()->now()->format('Y/m/d H:i') }}
</th>
</tr>
<tr>
<th colspan="7"
style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;">
</th>
</tr>
<tr>
<th colspan="7"
style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;font-size: 13;">
گزارش کارکرد ساخت راه های روستایی
</th>
</tr>
<tr>
<th rowspan="2"
style="background-color: #EBF1DE;text-align:center;border:1px solid black;font-weight:bold;">اداره
کل</th>
<th rowspan="2"
style="background-color: #EBF1DE;text-align:center;border:1px solid black;font-weight:bold;">شهرستان
</th>
<th colspan="4"
style="background-color: #EBF1DE;text-align:center;border:1px solid black;font-weight:bold;">نوع
عملیات</th>
<th rowspan="2"
style="background-color: #EBF1DE;text-align:center;border:1px solid black;font-weight:bold;">تعداد
پروژه</th>
</tr>
<tr>
<th style="background-color: #C4D79B;text-align:center; border:1px solid black;font-wight:bold;">عملیات
خاکی و زیرسازی
(کیلومتر)</th>
<th style="background-color: #C4D79B;text-align:center; border:1px solid black;font-wight:bold;">روسازی
(کیلومتر)</th>
<th style="background-color: #C4D79B;text-align:center; border:1px solid black;font-wight:bold;">ابنیه
فنی
(دستگاه)</th>
<th style="background-color: #C4D79B;text-align:center; border:1px solid black;font-wight:bold;">آسفالت
(کیلومتر)</th>
</tr>
</thead>
<tbody>
@foreach ($array 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['city_fa'] }}</td>
<td style="border: 1px solid black;text-align: center;">{{ $item['KhakiDone'] ?? 0 }}</td>
<td style="border: 1px solid black;text-align: center;">{{ $item['RosaziDone'] ?? 0 }}</td>
<td style="border: 1px solid black;text-align: center;">{{ round($item['AbneyehDone']) ?? 0 }}</td>
<td style="border: 1px solid black;text-align: center;">{{ $item['AsphaltDone'] ?? 0 }}</td>
<td style="border: 1px solid black;text-align: center;">{{ $item['qty'] ?? 0 }}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>