{{ config('app.name') }} Appointments |
||||||||
|
Hello {{ $appointment->user->name ?? $appointment->patient_name }}, @php $statusClass = 'status-default'; $statusText = strtoupper($appointment->status); if ($appointment->status === 'confirmed') { $statusClass = 'status-confirmed'; $statusText = 'APPROVED'; } elseif ($appointment->status === 'cancelled' || $appointment->status === 'no_show') { $statusClass = 'status-cancelled'; $statusText = 'REJECTED / CANCELLED'; } elseif ($appointment->status === 'completed') { $statusClass = 'status-completed'; $statusText = 'COMPLETED'; } @endphpYour appointment status has been updated to: {{ $statusText }}
If you have any questions or need to make changes, please contact the doctor's office. Best regards, |
||||||||
|
© {{ date('Y') }} {{ config('app.name') }}. All rights reserved. |