@extends('admin.layouts.app') @section('title', 'Class Schedule') @section('breadcrumb')
| Time / Day | @foreach($days as $day){{ $day }} | @endforeach|||||
|---|---|---|---|---|---|---|
| {{ date('h:i A', strtotime($time)) }} | @foreach($days as $day) @php $slot = ($grouped[$day] ?? collect())->firstWhere('start_time', $time); @endphp
@if($slot)
{{ $slot->subject?->name }}
{{ $slot->employee?->user?->name }}
@if($slot->room) {{ $slot->room }} @endif
|
@endforeach
|||||
| No schedule slots yet. Add slots using the button above. | ||||||