Total Bookings
{{ number_format($reportData['summary']['total_bookings']) }}
Total Revenue
${{ number_format($reportData['summary']['total_revenue'], 2) }}
Total Commission
${{ number_format($reportData['summary']['total_commission'], 2) }}
Total Passengers
{{ number_format($reportData['summary']['total_passengers']) }}
| Reference | PNR | Date | Flight | Channel | Pax | Amount | Commission | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $booking->booking_reference }} | {{ $booking->pnr }} | {{ \Carbon\Carbon::parse($booking->booking_date)->format('M d, Y') }} | {{ $booking->flight->flight_number ?? 'N/A' }} | {{ $booking->bookingChannel->name ?? 'N/A' }} | {{ $booking->passenger_count }} | ${{ number_format($booking->total_amount, 2) }} | ${{ number_format($booking->commission_amount, 2) }} | {{ ucfirst($booking->booking_status) }} |
|
No bookings found for the selected filters. |
||||||||