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

My Timetable

@forelse($timetable ?? [] as $slot) @empty @endforelse
Day Time Class Subject
{{ $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->classArm->schoolClass->name }} {{ $slot->classArm->name }} {{ $slot->subject->name }}
No timetable slots assigned yet.
@endsection