My Bookings
| Booking # | Service | Date | Amount | Status | Action |
|---|---|---|---|---|---|
| {{ $booking->reference ?? 'N/A' }} | {{ $booking->booking_type ? ucfirst($booking->booking_type) : 'N/A' }} | {{ $booking->created_at?->format('M d, Y') ?? 'N/A' }} | ${{ number_format($booking->price ?? 0, 2) }} | {{ $booking->status ? ucfirst($booking->status) : 'pending' }} | View |
|
No bookings found. Start exploring and book your next adventure! Explore Now |
|||||