@include('frontend.layouts.doctor-sidebar')

Recent and New Appointments

@foreach ($appointments as $appointment)

{{ $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)
Add Notes Upload Results View Details
@elseif($appointment->isAccepted == 0)
Reschedule
@csrf
@endif @elseif($appointment->status == 'Finished') @endif
@endforeach
@if ($appointments->isEmpty())

You have no on going appointments

@endif