@php $role = session('login_role'); $rolePath = $role === 'staff' ? 'staff' : 'student'; $portal = $role === 'staff' ? 'STAFF PORTAL' : 'STUDENT PORTAL'; $patientName = $dependent['full_name'] ?? ($profile['full_name'] ?? 'Patient'); $patientId = $dependent['id'] ?? ($profile['upsi_id'] ?? '-'); $type = session('booking_appointment_type') ?? 'Dental Check-Up'; $date = session('booking_appointment_date'); $time = session('booking_appointment_time'); $room = session('booking_room_number') ?? '-'; $slotId = session('booking_slot_id'); $ref = 'PKU-' . date('Ymd', strtotime($date)) . '-' . strtoupper(substr($slotId ?? '0000', 0, 4)); @endphp Confirm Booking - PKU Dental

Booking Confirmation

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

Confirm Your Booking

Please review the details before confirming.

APPOINTMENT REFERENCE

{{ $ref }}

PATIENT NAME{{ $patientName }}
PATIENT ID{{ $patientId }}
APPOINTMENT TYPE{{ $type }}
TREATMENT ROOMRoom {{ $room }}
DATE{{ $date ? date('l, d M Y', strtotime($date)) : '-' }}
TIME{{ $time ? date('g:i A', strtotime($time)) : '-' }}
QUEUE NUMBERGenerated after confirmation
ESTIMATED DURATION30–45 minutes
@if(session('error'))
{{ session('error') }}
@endif
Important Notes
Please arrive 10 minutes before your appointment. Cancellation or reschedule is allowed before the last 2 hours only.
@csrf
← Edit Booking