| # | Airline | Status | Passenger(s) | Flight From | Flight To | Adults | Departure | Total | Booked On | Actions |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
@if($order->airline_code ?? false)
|
{{ ucfirst($order->booking_status) }} | {{ $fullNames }} | {{ $order->origin_code ?? '-' }} | {{ $order->destination_code ?? '-' }} | {{ $order->adults ?? 0 }} | {{ $nextDeparture }} | {{ $order->currency }} {{ number_format($order->total_amount, 2) }} | {{ $order->created_at ? \Carbon\Carbon::parse($order->created_at)->format('d/m/Y') : '-' }} | View |
| No flight orders found. | ||||||||||
| Booking Ref | Customer | Tour Title | Passengers | Departure Date | Total Amount | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ $booking->booking_reference }} |
{{ $booking->user->name ?? 'N/A' }}
{{ $booking->user->email ?? 'N/A' }}
|
{{ $booking->tour->title ?? 'N/A' }}
|
@if($booking->adults > 0)
{{ $booking->adults }} Adults
@endif
@if($booking->children > 0)
{{ $booking->children }} Children
@endif
|
@if($booking->departure_date)
{{ date('d M Y', strtotime($booking->departure_date)) }}
{{ date('D', strtotime($booking->departure_date)) }}
|
{{ $currencySymbol }} {{ number_format($booking->total_amount) }}
|
{{ ucfirst($booking->status) }} | View Details |
| No tour bookings found. | |||||||
| User Name | Hotel Name | Travelling From | Check-in Date | Price | Status | Payment Via | Action |
|---|---|---|---|---|---|---|---|
| {{ $user->name }} | {{ $hotel->title }} | {{ $booking->travelling_from }} | {{ date('d M Y l', strtotime($booking->check_in)) }} |
{{ $currencySymbol }} {{ number_format($booking->price, 2) }}
|
{{ ucfirst($booking->status) }} | {{ $booking->payment_via }} | View Details |