@extends('layouts.app') @section('title', 'Master Timetable') @section('content')

Master Timetable

@if($selectedArmId) @forelse($slots as $slot) @empty @endforelse
DayTimeSubjectTeacher
{{ $slot->day_of_week }} {{ \Illuminate\Support\Carbon::parse($slot->start_time)->format('g:ia') }}–{{ \Illuminate\Support\Carbon::parse($slot->end_time)->format('g:ia') }} {{ $slot->subject->name }} {{ $slot->teacher->user->name ?? '—' }}
No timetable slots for this class arm yet.
@else

Select a class arm to view its timetable.

@endif
@endsection