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

Dear {{ $guest->first_name }} {{ $guest->last_name }},

Booking Cancelled
Your booking {{ $booking->booking_number }} has been cancelled.

We're sorry to inform you that your booking at {{ $property->name }} has been cancelled. @if($booking->cancellation_reason)

Reason: {{ $booking->cancellation_reason }} @endif

Booking Number
{{ $booking->booking_number }}
Cancelled
Original Check-in {{ \Carbon\Carbon::parse($rooms->first()->checkin_date)->format('l, d M Y') }}
Original Check-out {{ \Carbon\Carbon::parse($rooms->first()->checkout_date)->format('l, d M Y') }}
Room {{ $rooms->first()->roomType->name ?? 'Room' }}
Cancelled On {{ $booking->cancelled_at ? $booking->cancelled_at->format('d M Y, H:i') : now()->format('d M Y, H:i') }}
@if($booking->paid_amount > 0)

💰 Refund Information
If you have made any payment, our team will process your refund according to our cancellation policy. Please allow 5-14 business days for the refund to be processed.

@endif

We hope to see you soon!

If you'd like to make a new reservation, please visit our website or contact us directly.

If you have any questions about this cancellation, please don't hesitate to contact us.

@endsection