@extends('public.layouts.guest') @section('title', 'Choose Payment — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('content')
Back to Booking Form

Choose Payment Method

One last step — select how you'd like to pay

@if($errors->any())
{{ $errors->first() }}
@endif
{{-- Payment method selection --}}
@csrf

Payment Options

Online payment coming soon. Pay on Arrival is the only option available at this time.

{{-- ===== PAY ON ARRIVAL — ACTIVE ===== --}} {{-- ===== LOCKED METHODS ===== --}} @php $lockedMethods = [ ['label' => 'GCash', 'icon' => 'mobile'], ['label' => 'Maya', 'icon' => 'mobile'], ['label' => 'Credit Card', 'icon' => 'card'], ['label' => 'Debit Card', 'icon' => 'card'], ['label' => 'Bank Transfer', 'icon' => 'bank'], ['label' => 'Check', 'icon' => 'check'], ]; @endphp @foreach($lockedMethods as $method)
{{ $method['label'] }} Coming Soon

Online {{ $method['label'] }} payments will be available soon.

@if($method['icon'] === 'mobile') @elseif($method['icon'] === 'card') @elseif($method['icon'] === 'bank') @else @endif
@endforeach
{{-- Notice --}}

By confirming, you agree to pay the full amount on arrival. Your booking will be held as pending until confirmed by our staff. We may contact you to verify your reservation.

{{-- Booking summary sidebar --}}

Booking Summary

{{ $pending['room_type'] }}

Guest {{ $pending['guest_name'] }}
Check-in {{ \Carbon\Carbon::parse($pending['check_in'])->format('M d, Y') }}
Check-out {{ \Carbon\Carbon::parse($pending['check_out'])->format('M d, Y') }}
Duration {{ $pending['nights'] }} night{{ $pending['nights'] !== 1 ? 's' : '' }}
Guests {{ $pending['pax'] }}
Rate / night ₱{{ number_format($pending['room_rate']) }}
Total ₱{{ number_format($pending['amount']) }}
Amount due on arrival at the hotel
@endsection