Select a Time Slot
{{ $date ? date('l, d M Y', strtotime($date)) : '-' }} · {{ $type }}
@php $role = session('login_role'); $rolePath = $role === 'staff' ? 'staff' : 'student'; $portal = $role === 'staff' ? 'STAFF PORTAL' : 'STUDENT PORTAL'; $date = session('booking_appointment_date'); $type = session('booking_appointment_type') ?? 'Dental Check-Up'; $morningSlots = collect($slots ?? [])->where('session', 'morning')->values(); $afternoonSlots = collect($slots ?? [])->where('session', 'afternoon')->values(); @endphp
{{ $date ? date('l, d M Y', strtotime($date)) : '-' }} · {{ $type }}