{{ session('success') }}
{{ session('error') }}
View and manage all your ride bookings
| Reference | Pickup Date & Time | Vehicle | Service Type | Distance/Duration | Route | Total | Actions |
|---|---|---|---|---|---|---|---|
|
@php
$statusColors = [
'pending' => 'bg-yellow-100 text-yellow-800',
'confirmed' => 'bg-blue-100 text-blue-800',
'in_progress' => 'bg-purple-100 text-purple-800',
'completed' => 'bg-green-100 text-green-800',
'cancelled' => 'bg-red-100 text-red-800',
];
@endphp
{{ ucfirst(str_replace('_', ' ', $booking->status)) }}
|
{{ \Carbon\Carbon::parse($booking->booking_datetime)->format('M d, Y') }}
{{ \Carbon\Carbon::parse($booking->booking_datetime)->format('g:i A') }}
|
{{ $booking->vehicleCategory?->localized_name ?? 'N/A' }}
@if ($booking->vehicle)
{{ $booking->vehicle->make }}
{{ $booking->vehicle->model }}
@endif
|
{{ ucfirst(str_replace('_', ' ', $booking->service_type)) }}
@if ($booking->is_return_trip)
(Return Trip)
@endif
|
@if ($booking->service_type === 'private_transfer')
{{ $booking->distance_km . ' km' }}
@elseif ($booking->service_type === 'hourly_hire')
{{ $booking->duration_hours > 1 ? $booking->duration_hours . ' hours' : $booking->duration_hours . ' hour' }}
@endif
|
📍 {{ $booking->pickup_location }}
🎯 {{ $booking->dropoff_location }}
|
{{ $booking->currency }} {{ number_format($booking->total_amount, 2) }}
|
View
@if(in_array($booking->status, ['pending', 'confirmed']))
@endif
|
No bookings found@if ($this->search || $this->statusFilter || $this->serviceTypeFilter || $this->dateFrom || $this->dateTo) Try adjusting your filters to find what you're looking for @else Start by booking your first ride with us @endif Book Your First Ride |
|||||||
Are you sure you want to cancel booking {{ $selectedBooking->booking_reference }}?
Eligible for Refund
You will receive a 90% refund for cancellations made more than 24 hours before the scheduled booking time. Please note that a 10% fee will be charged for bank transfers and taxes. Refunds will be processed within 10 working days.
Non-Refundable
Cancellations made within 24 hours of the scheduled booking time will not be eligible for a refund.
Booking Reference: {{ $selectedBooking->booking_reference }}
Current Date & Time
{{ \Carbon\Carbon::parse($selectedBooking->booking_datetime)->format('F d, Y \a\t g:i A') }}
{{ $message }}
@enderror{{ $message }}
@enderrorPlease note that rescheduling is subject to availability. Once submitted, our team will review and confirm the new date and time.