@php $today = \Carbon\Carbon::today(); $selectedDate = request('date', $today->format('Y-m-d')); if (\Carbon\Carbon::parse($selectedDate)->lt($today)) { $selectedDate = $today->format('Y-m-d'); } $days = []; for ($i = 0; $i < 5; $i++) { $days[] = $today->copy()->addDays($i); } @endphp Session Management

Session Management

{{ now()->format('D, d M Y') }}

Session Management

Configure appointment slots and availability

+ Create Session
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

{{ \Carbon\Carbon::parse($selectedDate)->format('l, d F Y') }}

Session slots configuration

@forelse($sessions as $session)

{{ $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
@if($session['is_active'] ?? true)
@csrf
@else
@csrf
@endif
@empty
No sessions configured for this date.
@endforelse

Create New Session

@csrf