CourseWork/resources/views/subjects/pdf.blade.php

44 lines
960 B
PHP
Raw Normal View History

2024-06-17 17:38:29 +04:00
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
* { font-family: DejaVu Sans !important; }
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
<title>Информация о предметах</title>
</head>
<body>
<h1>Информация о предметах</h1>
<table>
<thead>
<tr>
<th>Предмет</th>
<th>ФИО учителя</th>
</tr>
</thead>
<tbody>
@foreach($subjects as $subject)
<tr>
<td>{{ $subject['subject'] }}</td>
<td>{{ $subject['teacher'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>