Ticket Management

Manage all flight bookings and reservations

Total Bookings

{{ $totalBookings }}

Confirmed

{{ $confirmedBookings }}

Pending

{{ $pendingBookings }}

Cancelled

{{ $cancelledBookings }}

Filter Bookings

Showing {{ $bookings->count() }} of {{ $bookings->total() }} results

@forelse($bookings as $booking) @empty @endforelse
Booking Flight Passengers Channel Date Amount Status Actions
{{ $booking->booking_reference }}
PNR: {{ $booking->pnr }}
{{ $booking->flight->flight_number }}
{{ $booking->flight->origin }} → {{ $booking->flight->destination }}
{{ $booking->num_passengers ?? 1 }} {{ $booking->bookingChannel->name }} {{ $booking->booking_date->format('M d, Y') }}
${{ number_format($booking->total_amount, 2) }}
{{ ucfirst($booking->status) }}

No bookings found

{{ $bookings->links() }}