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

@if($booking->status == 'cancelled') Booking Cancelled @else Booking Confirmed @endif

Your reservation at {{ $booking->hotel_name }} is @if($booking->status == 'cancelled') Cancelled. @else Confirmed. @endif

{{ strtoupper($booking->status) }}

Trip Details

D

{{ $booking->booking_reference }}

Booking Date

{{ $booking->booking_date }}

Stay Information

Check-in

{{ $booking->checkin }}

Check-out

{{ $booking->checkout }}

Guest Details

Guest Name

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

Contact

{{ $booking->holder_email }}

{{ $booking->holder_phone }}

Hotel Details

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 }}
@endsection