{{ 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'; } @endphpYour personal training appointment status has been updated to: {{ $statusText }}
If you have any questions or need to make changes, please contact your trainer. Best regards, |
||||||||
|
© {{ date('Y') }} {{ config('app.name') }}. All rights reserved. |