@extends('emails.layouts.email') @section('title', 'Booking Cancelled - ' . $booking->booking_number) @section('header_title', '❌ Booking Cancelled') @section('content')

Booking cancelled!
A booking has been cancelled.

Booking Number
{{ $booking->booking_number }}
Cancelled
Guest Name {{ $guest->first_name }} {{ $guest->last_name }}
Original Check-in {{ \Carbon\Carbon::parse($rooms->first()->checkin_date)->format('d M Y') }}
Original Check-out {{ \Carbon\Carbon::parse($rooms->first()->checkout_date)->format('d M Y') }}
Room {{ $rooms->first()->roomType->name ?? 'Room' }}
Total Amount {{ $booking->currency }} {{ number_format($booking->total_amount, 0, ',', '.') }}
@if($booking->cancellation_reason)

Cancellation Reason

{{ $booking->cancellation_reason }}

@endif
@if($booking->paid_amount > 0) @endif
Cancelled On {{ $booking->cancelled_at ? $booking->cancelled_at->format('d M Y, H:i') : now()->format('d M Y, H:i') }}
Paid Amount {{ $booking->currency }} {{ number_format($booking->paid_amount, 0, ',', '.') }} (Refund may be required)

The guest has been notified of this cancellation.

@endsection