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

Patient Appointments

@foreach ($appointments as $appointment)

{{ \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 }}

Age: {{ $appointment->patient_age }}

Status: {{ $appointment->status }}

Contact: {{ $appointment->patient_contact }}

At: Brokenshire Medical Center

Appointment Time: {{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }}

Reschedule
@csrf
@endforeach @if ($appointments->isEmpty())

You have no on going appointments

@endif