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

Complete Your Booking

{{ $type }}

@if($errors->any())
{{ $errors->first() }}
@endif
{{-- Booking form --}}
@csrf

Your Details

Requests are noted but not guaranteed.

@if(!empty($booking['deposit_message']))

Payment Information

{{ $booking['deposit_message'] }}

@endif

By booking you agree to our terms and cancellation policy.

{{-- Summary sidebar --}}
@if($photos->count()) {{ $type }} @else
@endif

{{ $type }}

Room {{ $room->no }} · Floor {{ $room->floor }}

Check-in {{ \Carbon\Carbon::parse($checkIn)->format('M d, Y') }}
Check-out {{ \Carbon\Carbon::parse($checkOut)->format('M d, Y') }}
Duration {{ $nights }} night{{ $nights !== 1 ? 's' : '' }}
Guests {{ $guests }}
Rate / night ₱{{ number_format($room->rate) }}
Total ₱{{ number_format($room->rate * $nights) }}

Check-in: {{ $booking['check_in_time'] ?? '2:00 PM' }} · Check-out: {{ $booking['check_out_time'] ?? '12:00 NN' }}

@endsection