44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ $title }}</title>
|
|
<style>
|
|
body { font-family: 'DejaVu Sans', sans-serif; font-size: 11px; color: #1f2430; }
|
|
h1 { font-size: 16px; margin: 0 0 4px; }
|
|
.sub { color: #6b7280; margin: 0 0 12px; }
|
|
table { width: 100%; border-collapse: collapse; }
|
|
th, td { border: 1px solid #cfd4dc; padding: 4px 6px; text-align: left; vertical-align: top; }
|
|
th { background: #eef2ff; font-weight: bold; }
|
|
.empty { color: #6b7280; font-style: italic; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{ $title }}</h1>
|
|
<p class="sub">Сформирован {{ $generatedAt }}</p>
|
|
|
|
@if (empty($rows))
|
|
<p class="empty">Нет данных за выбранный период.</p>
|
|
@else
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
@foreach ($columns as $column)
|
|
<th>{{ $column['label'] }}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($rows as $row)
|
|
<tr>
|
|
@foreach ($columns as $column)
|
|
<td>{{ $row[$column['key']] ?? '' }}</td>
|
|
@endforeach
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@endif
|
|
</body>
|
|
</html>
|