CourseWork/resources/views/students/avg-scores.blade.php
2024-06-25 01:42:23 +04:00

44 lines
948 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>