Select Payment Method

@if(session('error'))
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
Credit/Debit Card

Pay securely with your credit or debit card

@csrf
PayPal

Pay securely with your PayPal account

@csrf
Paystack

Pay securely with Paystack (Cards, Bank Transfer, USSD)

Payments processed in Nigerian Naira (NGN) @php $originalAmount = $booking->price; $originalCurrency = 'USD'; $ngnAmount = \App\Helpers\CurrencyHelper::convert($originalAmount, $originalCurrency, 'NGN'); @endphp Original: {{ \App\Helpers\CurrencyHelper::formatAmount($originalAmount, $originalCurrency) }} → Paystack: {{ \App\Helpers\CurrencyHelper::formatAmount($ngnAmount, 'NGN') }}
@csrf

Booking Summary

@if($booking->hotel)
{{ $booking->hotel->title }}
@else
Hotel Information Unavailable
@endif

Check-in: {{ date('M d, Y', strtotime($booking->check_in)) }}

Check-out: {{ date('M d, Y', strtotime($booking->check_out)) }}

Guests: {{ $booking->adults }} Adults, {{ $booking->childrens }} Children

Rooms: {{ $booking->rooms }}


Total Amount: ${{ number_format($booking->price, 2) }}