@extends('layouts.booking') @section('title', 'Booking Confirmed') @section('content')

Reservation Confirmed!

Thank you, {{ $reservation->guest->first_name }}. Your booking is confirmed.

Confirmation #
{{ $reservation->number }}
Status
Check-in
{{ $reservation->check_in_date->format('M j, Y') }}
Check-out
{{ $reservation->check_out_date->format('M j, Y') }}
Room Type
{{ $reservation->roomType->name }}
Total
{{ $hotel?->currency ?? 'USD' }} {{ number_format($reservation->total_amount, 2) }}
Book Another Stay
@endsection