Session Management
Configure appointment slots and availability
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@foreach($days as $day)
{{ strtoupper($day->format('D')) }}
{{ $day->format('d M') }}
@endforeach
{{ \Carbon\Carbon::parse($selectedDate)->format('l, d F Y') }}
Session slots configuration
{{ $session['session_type'] }}
{{ date('g:i A', strtotime($session['start_time'])) }} – {{ date('g:i A', strtotime($session['end_time'])) }} · {{ $session['slots_per_room'] }} slots total
@if($session['session_type'] === 'Walk-In Session')
{{ $session['walkin_registered'] ?? 0 }} registered,
{{ $session['walkin_available'] ?? 0 }} available
@else
{{ $session['booked_count'] ?? 0 }} booked,
{{ $session['available_count'] ?? 0 }} available
@endif
@if(!($session['is_active'] ?? true))
Session closed
@endif
Edit Session
No sessions configured for this date.
@endforelse