{{-- blade-formatter-disable --}} @component('mail::message') Dear {{ $booking->user->customer->full_name }}, @if ($booking->status == \App\Models\Booking::APPROVED) Good day, your requested schedule has been moved.
@component('mail::panel') Appointment Schedule
Service: {{ $booking->service->name }}
Barber: {{ $booking->barber->full_name }}
Customer: {{ $booking->user->customer->full_name }}
Previous Schedule: {{ formatDate($old_schedule->date_time_start) }} at {{ formatDate($old_schedule->date_time_start, 'time') }} - {{ formatDate($old_schedule->date_time_end, 'time') }}
New Schedule: {{ formatDate($booking->schedule->date_time_start) }} at {{ formatDate($booking->schedule->date_time_start, 'time') }} - {{ formatDate($booking->schedule->date_time_end, 'time') }}
Barbershop: Ped's Barbershop
Remark: {{ $booking->remark ?? 'N/A' }} @endcomponent @endif @component('mail::button', ['url' => $url, 'color' => 'success']) Redirect @endcomponent Thanks,
{{ config('app.name') }} @endcomponent