@extends('layouts.app') @section('content')

{{ $booking->hotel_name }}

{{ $booking->city_name }}, {{ $booking->country_name }}

Booking Confirmed!

Your reservation at {{ $booking->hotel_name }} is complete and confirmed.

{{ strtoupper($booking->status) }}
Search
Book
Confirm
Stay
Trip Details

Booking Reference

{{ $booking->booking_reference }}

Booking Date

{{ $booking->booking_date }}

Check-in

{{ $booking->checkin }}

Check-out

{{ $booking->checkout }}

Guest Details

Guest Name

{{ $booking->holder_title }} {{ $booking->holder_name }} {{ $booking->holder_surname }}

Email Address

{{ $booking->holder_email }}

Phone Number

{{ $booking->holder_phone }}

Hotel Information

Hotel Name

{{ $booking->hotel_name }}

Address

{{ $booking->hotel_address }}, {{ $booking->city_name }}, {{ $booking->country_name }}

Price Summary
@foreach($booking->price_breakdown['breakdown'] ?? [] as $item) @endforeach
{{ $item['description'] }} {{ $item['amount'] }} {{ $booking->currency }}
Total Amount Paid {{ $booking->total_price }} {{ $booking->currency }}
Important Information

Please present this confirmation at the hotel front desk upon arrival.

Check-in time: 3:00 PM | Check-out time: 11:00 AM

Print Confirmation
@csrf
@csrf
@endsection