@extends('layouts.app') @section('title', $student->full_name . ' — 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 published for this class yet. | |||