{{-- resources/views/reservations/create.blade.php --}} @extends('layouts.app') @section('title', 'New Reservation') @section('page_title', 'New Reservation') @section('content')
← Back
{{-- Step Progress --}}
@foreach(['Dates & Availability', 'Select Rooms', 'Guest & Details', 'Review & Confirm'] as $i => $label)
@if($i > 0)
@endif
{{ $i + 1 }}
{{ $label }}
@if($i < 3)
@endif
@endforeach
@csrf {{-- ═══════════════════════════════════════════════════════ STEP 1 — Dates & Availability ═══════════════════════════════════════════════════════ --}}
Select Dates
{{-- Availability Results --}}
Select dates and click Check Availability
{{-- ═══════════════════════════════════════════════════════ STEP 2 — Select Rooms ═══════════════════════════════════════════════════════ --}}
{{-- Live pricing summary --}}
Room Pricing
{{-- ═══════════════════════════════════════════════════════ STEP 3 — Guest & Details ═══════════════════════════════════════════════════════ --}}
{{-- Guest --}}
Guest
{{-- Occupancy --}}
Occupancy
{{-- Booking Details --}}
Booking Details
{{ tenant()->baseCurrency?->code ?? 'USD' }}
{{-- Requests --}}
Requests & Notes
{{-- Service Add-ons --}}
Additional Services optional
@php $services = \App\Models\PropertyService::where('property_id', tenant_id()) ->where('is_active', true) ->orderBy('name') ->get(); @endphp @if($services->isEmpty())

No services configured. Add services →

@else
@foreach($services as $svc)
{{ $svc->name }}
{{ tenant()->baseCurrency?->code ?? 'USD' }} {{ number_format($svc->price, 2) }} @if($svc->unit) / {{ $svc->unit }} @endif
{{ tenant()->baseCurrency?->code ?? 'USD' }} {{ number_format($svc->price, 2) }}
@endforeach
Services subtotal {{ tenant()->baseCurrency?->code ?? 'USD' }} 0.00
@endif
{{-- ═══════════════════════════════════════════════════════ STEP 4 — Review & Confirm ═══════════════════════════════════════════════════════ --}}
Reservation Summary
{{-- Filled by JS --}}
Total
{{-- Hidden form fields —— populated from wizard state --}}
{{-- ════════════════════════════════════════════════════════ Quick Guest Modal ════════════════════════════════════════════════════════ --}} @endsection @push('scripts') @endpush