@extends('layouts.app') @section('title', $student->full_name . ' — Timetable') @section('content')

{{ $student->full_name }} — Class Timetable

@forelse($timetable as $slot) @empty @endforelse
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 published for this class yet.
@endsection