Files
backend/resources/views/excel/user-actitvity-reports.blade.php

85 lines
3.8 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>
<table>
<thead>
<tr>
<th colspan="12"
style="background-color: #DAEEF3;text-align: center;border-right: 1px solid black;font-weight:bolder;text-align:center;">
تاریخ دریافت گزارش: {{verta()->now()->format('Y/m/d H:i')}}
</th>
</tr>
<tr>
<th colspan="12"
style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;">
</th>
</tr>
<tr>
<th colspan="12"
style="background-color: #DAEEF3;text-align: center;border-right:1px solid black;font-weight:bolder;font-size: 13;">
@if ($fromDate == null)
گزارش از فعالیت کاربران
@else
گزارش از فعالیت کاربران از تاریخ
{{verta($fromDate)->format('Y/n/j')}}
تا
تاریخ
{{verta($toDate)->format('Y/n/j')}}
@endif
</th>
</tr>
<tr>
<th colspan="2" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">نام گروه
</th>
<th style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">
{{$array['group_name']}}
</th>
<th colspan="2" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">مجموع
فعالیت</th>
<th style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">
{{$array['activity_time']}} ساعت</th>
<th colspan="2" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">تعداد
کاربران</th>
<th style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">
{{$array['user_count']}}</th>
<th colspan="2" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">شاخص
فعالیت</th>
<th style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">
{{$array['average']}}</th>
</tr>
<tr>
<th colspan="6" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">عنوان
فعالیت</th>
<th colspan="3" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">تعداد
دفعات
انجام</th>
<th colspan="3" style="border: 1px solid black;text-align: center;background-color: #EBF1DE;">کد یکتای
فعالیت</th>
</tr>
</thead>
<tbody>
@foreach ($array['activity_list'] as $item)
<tr>
<td colspan="6" style="border: 1px solid black;text-align: center;">{{$item->description}}</td>
<td colspan="3" style="border: 1px solid black;text-align: center;">{{$item->cnt}}</td>
<td colspan="3" style="border: 1px solid black;text-align: center;">{{$item->log_unique_code}}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>