@extends('home') @section('title') Mój Panel - Zajęcia @endsection @section('user_content')

{{ App\Subject::find($classes->subject_id)->name }}, {{ $classes->date }} {{ App\Subject::find($classes->subject_id)->time }}

@if(!$verified)

Wprowadź poniższy kod do programu:

{{ $classes_code }}

@else

Połączono prawidłowo.

Zajęcia odbywają się w sali {{ $room }}.

@if($attendances)

Aktualna liczba studentów w sali: {{ $attendances->count() }}



@foreach($attendances as $attendance)

Student ID number: {{ $attendance->student_id_number }}

Student name: {{ $attendance->student_name }}

Student surname: {{ $attendance->student_surname }}

Seat number: {{ $attendance->seat_number }}



@endforeach @else

Aktualna liczba studentów w sali: 0



@endif @endif
@endsection