57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
PHP
<!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>
|
|
<h3>Список отличников</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ФИО</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($excellentStudents as $student)
|
|
<tr>
|
|
<td>{{ $student->fio }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<h3>Список хорошистов</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ФИО</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($goodStudents as $student)
|
|
<tr>
|
|
<td>{{ $student->fio }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|