{{ config('app.name') }} Appointments

Hello {{ $appointment->user->name }},

@php $statusClass = 'status-default'; $statusText = strtoupper($appointment->status); if ($appointment->status === 'confirmed') { $statusClass = 'status-confirmed'; $statusText = 'CONFIRMED'; } elseif ($appointment->status === 'cancelled' || $appointment->status === 'no_show') { $statusClass = 'status-cancelled'; $statusText = 'CANCELLED / NO SHOW'; } elseif ($appointment->status === 'completed') { $statusClass = 'status-completed'; $statusText = 'COMPLETED'; } @endphp

Your personal training appointment status has been updated to: {{ $statusText }}

Trainer: {{ $appointment->provider->business_name }}
Service: {{ $appointment->service->name }}
Date: {{ \Carbon\Carbon::parse($appointment->appointment_date)->format('l, M d, Y') }}
Time: {{ \Carbon\Carbon::parse($appointment->start_time)->format('h:i A') }} - {{ \Carbon\Carbon::parse($appointment->end_time)->format('h:i A') }}

If you have any questions or need to make changes, please contact your trainer.

Best regards,
The {{ config('app.name') }} Team