{{-- Position --}}
{{ $loop->iteration }}
{{-- Info --}}
{{ $booking->display_name }}
@if($booking->vehicle_plate || $booking->client?->vehicles->first())
{{ $booking->vehicle_plate ?? $booking->client?->vehicles->first()?->plate_number }}
@endif
{{ $booking->scheduled_at->format('d M Y · H:i') }}
@if($booking->address) · {{ Str::limit($booking->address, 35) }} @endif
@if($services)
{{ $services }}
@endif
{{-- Priority badge --}}
{{ ucfirst($booking->priority) }}
@if($booking->started_at)
In Progress
@endif
{{-- Staff assignment --}}
{{-- Time --}}
KSh {{ number_format($booking->totalPrice(), 0) }}
@if($booking->estimated_duration)
~{{ $booking->estimated_duration }}min
@else
Est. total
@endif
{{-- Actions --}}
View
@if(!$booking->started_at)
@endif