Complete Payment

Secure checkout for your hotel reservation

Booking Details
Booking ID: {{$bookingInfo->booking_code}}
Hotel Name: {{$bookingInfo->hotel_name}}
Check-in / Check-out: {{$bookingInfo->check_in_date}} — {{$bookingInfo->check_out_date}}
Guests / Rooms: {{$totalAdults}} Adults, {{$totalChildren}} Child | {{$totalRooms}} Rooms
Total Amount (incl. taxes) ₹ {{$amount}}
Choose payment option
{{--
PCI-DSS compliant & encrypted
--}} {{-- --}} {{-- --}} {{--
By completing payment you agree to cancellation policy & terms.
--}}
✨ Payment initiated successfully
@php $upiId = $hotelInfo->upi_id; $payeeName = urlencode($hotelInfo->name); $amount = $amount; $note = urlencode($bookingInfo->booking_code); // Generic UPI $upiLink = "upi://pay?pa={$upiId}&pn={$payeeName}&am={$amount}&cu=INR&tn={$note}"; // Google Pay $gpayLink = "gpay://upi/pay?pa={$upiId}&pn={$payeeName}&am={$amount}&cu=INR&tn={$note}"; // PhonePe $phonepeLink = "phonepe://pay?pa={$upiId}&pn={$payeeName}&am={$amount}&cu=INR&tn={$note}"; @endphp