Customer | From | To | Vehicle Group | Duty Type | Start Date | End Date | Status | Actions |
---|---|---|---|---|---|---|---|---|
{{ $booking->customer->name ?? '-' }} | {{ $booking->fromCity->name ?? '-' }} | {{ $booking->toCity->name ?? '-' }} | {{ $booking->vehicleGroup->name ?? '-' }} | {{ $booking->dutyType->name ?? '-' }} | {{ $booking->start_date }} | {{ $booking->end_date }} | @php $statusClass = match ($booking->status) { 'pending' => 'bg-warning text-white', 'confirmed' => 'bg-success', 'cancelled' => 'bg-danger', default => 'bg-secondary', }; @endphp {{ ucfirst($booking->status) }} |
|