28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<table class="table table-striped subjects-table">
|
|
<tr class="thead-dark">
|
|
<th> Nazwa zajęć </th>
|
|
<th> Nr indeksu </th>
|
|
<th> Imię </th>
|
|
<th> Nazwisko </th>
|
|
<th> Nr miejsca </th>
|
|
@if(!$export == 1)
|
|
<th></th>
|
|
@endif
|
|
</tr>
|
|
@foreach ($attendances_list as $attendance)
|
|
<tr>
|
|
<td> {{ App\Subject::find(App\Classes::find($attendance->classes_id)->subject_id)->name }},
|
|
{{ App\Classes::find($attendance->classes_id)-> date }} {{ App\Subject::find(App\Classes::find($attendance->classes_id)->subject_id)->time }}, sala {{ App\Room::find(App\Subject::find(App\Classes::find($attendance->classes_id)->subject_id)->room_id)->name }} </td>
|
|
<td> {{ $attendance->student_id_number }} </td>
|
|
<td> {{ $attendance->student_name}}</td>
|
|
<td> {{ $attendance->student_surname}}</td>
|
|
<td> {{ $attendance->seat_number }} </td>
|
|
@if(!$export == 1)
|
|
<td>
|
|
<a href="{{ route('user_delete_attendance', [$attendance->id]) }}" name="delete-attendance-btn" class="btn btn-danger"> Usuń </a>
|
|
</td>
|
|
@endif
|
|
</tr>
|
|
@endforeach
|
|
</table>
|