@extends('layouts.app') @section('title', 'Master Timetable') @section('content')
| Day | Time | Subject | Teacher |
|---|---|---|---|
| {{ $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. | |||
Select a class arm to view its timetable.
@endif