Recent and New Appointments
@foreach ($appointments as $appointment)
@endforeach
@if ($appointments->isEmpty())
{{ $appointment->status }}
{{ \Carbon\Carbon::parse($appointment->appointment_date)->format('l, F j, Y') }}
{{ $appointment->test_names }}
Brokenshire Hospital Medical Center
from PATIENTPORTAL
Patient Name: {{ $appointment->patient_first_name }} {{ $appointment->patient_last_name }}
Appointment Time: {{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }}
@if ($appointment->status != 'Finished')
@if ($appointment->isAccepted == 1)
@elseif($appointment->isAccepted == 0)
@endif
@elseif($appointment->status == 'Finished')
@endif
You have no on going appointments
@endif