Select Payment Method

Choose your preferred payment method to complete your booking

@if(session('error'))
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif

Booking Summary

From {{ $booking->origin_code }}
To {{ $booking->destination_code }}
Departure {{ $booking->departure_date->format('M d, Y H:i') }}
@if($booking->return_date)
Return {{ $booking->return_date->format('M d, Y H:i') }}
@endif
Passengers {{ $booking->adults }} Adult(s), {{ $booking->children }} Child(ren)
Airline {{ $booking->airline_name ?? 'N/A' }}

Choose Payment Method

Credit/Debit Card
Pay securely with your credit or debit card using Stripe
@csrf
PayPal
Pay securely with your PayPal account
@csrf
Your payment information is encrypted and secure
Price Breakdown
Base Fare {{ $booking->currency }} {{ number_format($booking->total_amount - $booking->service_charges, 2) }}
Service Charges {{ $booking->currency }} {{ number_format($booking->service_charges, 2) }}
Total Amount {{ $booking->currency }} {{ number_format($booking->total_amount, 2) }}
{{ $booking->currency }} {{ number_format($booking->total_amount, 2) }}
Total to Pay
@push('scripts') @endpush