{{-- resources/views/emails/notifications/appointment-cancellation.blade.php --}} @extends('email.layouts.main') @section('title', 'Appointment Cancelled') @section('header_title', 'Your Appointment Was Cancelled') @section('content')
Hello {{ $booking->user->name }},
We regret to inform you that your appointment on
{{ date('F d, Y, h:i A', strtotime($booking->start_time)) }}
has been cancelled.
@if(!empty($cancellationReason))
Reason: {{ $cancellationReason }}
@endif
We apologize for any inconvenience caused. If you wish to reschedule or have any questions, please let us know or visit our website to book a new appointment.
@endsection