Teacher Timetable
@foreach ($timetables as $timetable) @if ($timetable->teacher_timetables->isEmpty()) @continue @endif
{{ $timetable->full_name }}
Time
Subject
Class
Section
@foreach ($timetable->teacher_timetables as $time)
{{ $time->start_time }} - {{ $time->end_time }}
{{ $time->subjects->name }}
{{ $time->classes->name }}
{{ $time->sections->name }}
@endforeach
@endforeach