Files
backend/resources/views/excel-old/Upgrade/summaryAccidentPerformanceProject.blade.php
2024-02-01 09:53:53 +00:00

89 lines
5.4 KiB
PHP
Raw 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>
<style>
table,
th,
td {
border: 1px solid black;
}
</style>
</head>
<body dir="rtl" style="text-align: center;">
<table>
<thead>
<tr>
<th colspan="14" 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="14" style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;"></th>
</tr>
<tr>
<th colspan="14" style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;font-size: 13;">
گزارش کارکرد روکش آسفالت از تاریخ
{{verta($fromFa)->format('Y/n/j')}}
تا
تاریخ
{{verta($toFa)->format('Y/n/j')}}
</th>
</tr>
<tr>
<th rowspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">اداره کل</th>
<th rowspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">شهرستان</th>
<th rowspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">نام محور</th>
<th rowspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">نوع محور</th>
<th rowspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">عنوان پروژه</th>
<th colspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">نصب حفاظ ها</th>
<th colspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">اجرای روشنایی ها</th>
<th colspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">اجرای علائم و خط کشی</th>
<th rowspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">ترانشه برداری (کیلومتر)</th>
<th colspan="2" style="background-color: #EBF1DE;border:1px solid black;text-align:center;font-weight: bold;">میانگین درصد پیشرفت فیزیکی</th>
</tr>
<tr>
<th style="background-color: #C4D79B;border:1px solid black;text-align: center;font-weight: bold;"> حفاط بتنی (کیلومتر)</th>
<th style="background-color: #C4D79B;border:1px solid black;text-align: center;font-weight: bold;"> حفاظ فلزی (کیلومتر)</th>
<th style="background-color: #C4D79B;border:1px solid black;text-align: center;font-weight: bold;">روشنایی طولی (کیلومتر)</th>
<th style="background-color: #C4D79B;border:1px solid black;text-align: center;font-weight: bold;">روشنایی نقطه ای (تعداد)</th>
<th style="background-color: #C4D79B;border:1px solid black;text-align: center;font-weight: bold;">علائم ایمنی (تعداد)</th>
<th style="background-color: #C4D79B;border:1px solid black;text-align: center;font-weight: bold;">علائم ایمنی (تعداد)</th>
</tr>
</thead>
<tbody>
@foreach ($roads as $road)
<tr>
<td style="text-align: center;border:1px solid black;">{{$road['province']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['city']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['axis_type_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['axis_name_fa']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['project_title']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['hefazBotoni']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['hefazFelezi']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['RoshanayiTooli']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['RoshanayiNoghteyi']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['AlaemImeni']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['Khatkeshi']}}</td>
<td style="text-align: center;border:1px solid black;">{{$road['TaransheBardari']}}</td>
<td style="text-align: center;border:1px solid black;">{{round($road['avg'], 1)}}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>