@extends('layouts.booking') @section('title', 'Complete Booking') @section('content')
Guest Details
@csrf
Booking Summary
{{ $roomType->name }}

{{ \Carbon\Carbon::parse($criteria['check_in_date'])->format('M j, Y') }} — {{ \Carbon\Carbon::parse($criteria['check_out_date'])->format('M j, Y') }}


Subtotal {{ $hotel?->currency ?? 'USD' }} {{ number_format($quote['subtotal'] ?? $quote['total'] ?? 0, 2) }}
@if(isset($quote['tax']) && $quote['tax'] > 0)
Tax{{ number_format($quote['tax'], 2) }}
@endif
Total {{ $hotel?->currency ?? 'USD' }} {{ number_format($quote['total'] ?? 0, 2) }}
@endsection