@extends('public.layouts.guest') @section('title', 'Booking Confirmed — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('content')
{{-- Success header --}}

Booking Received!

Thank you, {{ $reservation->guest_name }}. Your request has been submitted.

{{-- Booking reference card --}}
{{-- Reference banner --}}

Booking Reference

{{ $reservation->booking_no }}

Save this number — you'll need it at check-in

{{-- Details --}}
Room Type {{ $reservation->room->type ?? $reservation->room_no }}
Check-in {{ \Carbon\Carbon::parse($reservation->check_in)->format('l, M d, Y') }}
Check-out {{ \Carbon\Carbon::parse($reservation->check_out)->format('l, M d, Y') }}
Duration @php $nights = \Carbon\Carbon::parse($reservation->check_in)->diffInDays($reservation->check_out); @endphp {{ $nights }} night{{ $nights !== 1 ? 's' : '' }}
Guests {{ $reservation->pax }}
Total Amount ₱{{ number_format($reservation->amount) }}
Status Pending Confirmation
{{-- Message --}} @if(!empty($booking['confirmation_message']))

{{ $booking['confirmation_message'] }}

@endif {{-- Check-in/out times --}}

Check-in from

{{ $booking['check_in_time'] ?? '2:00 PM' }}

Check-out by

{{ $booking['check_out_time'] ?? '12:00 NN' }}

@endsection