Track Your Booking

Enter your reference code to check the status of your booking

@if($ref && !$booking)

No booking found for "{{ $ref }}"

Please check your reference code and try again.

@endif @if($booking) @php $progress = match($booking->status) { 'pending' => 33, 'completed' => 100, 'cancelled' => 0, default => 50, }; @endphp
Booking #{{ $booking->reference_code }}
{{ $booking->scheduled_at->format('d M Y · H:i') }}
{{ ucfirst($booking->status) }}
Name {{ $booking->display_name }}
@if($booking->vehicle_plate)
Vehicle {{ $booking->vehicle_plate }}
@endif
Services {{ $booking->services->pluck('name')->join(', ') }}
Estimated Total KSh {{ number_format($booking->totalPrice(), 2) }}
@if($booking->assignedEmployee)
Assigned Staff {{ $booking->assignedEmployee->name }}
@endif @if($booking->notes)
Notes {{ $booking->notes }}
@endif @if(!in_array($booking->status, ['completed', 'cancelled']))
@csrf
@endif
@endif
← Book a new service