@endif
@if($booking)
@php
$progress = match($booking->status) {
'pending' => 33,
'completed' => 100,
'cancelled' => 0,
default => 50,
};
@endphp
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']))
@endif