CourseWork/resources/views/grades/list-students.blade.php

57 lines
1.1 KiB
PHP
Raw Normal View History

2024-06-24 00:51:05 +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>
<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>