CourseWork/resources/views/students/avg-scores.blade.php

44 lines
948 B
PHP
Raw Normal View History

2024-06-25 01:42:23 +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($avgScores as $key => $item)
<tr>
<td>{{ $key }}</td>
<td>{{ $item }}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>