Back to Appointments

Appointment Details

{{ ucfirst($appointment->status) }}

Appointment Information

Type: {{ ucfirst(str_replace('_', ' ', $appointment->type)) }}

Scheduled Date: {{ $appointment->scheduled_at->format('F j, Y') }}

Scheduled Time: {{ $appointment->scheduled_at->format('g:i A') }}

Status: {{ ucfirst($appointment->status) }}

@if($appointment->status === 'cancelled' && $appointment->cancelled_at)

Cancelled On: {{ $appointment->cancelled_at->format('F j, Y g:i A') }}

@endif

Employee Information

Employee: {{ $appointment->patient->name }}

Email: {{ $appointment->patient->email }}

Doctor Information

Doctor: {{ $appointment->doctor->name }}

Email: {{ $appointment->doctor->email }}

@if($appointment->notes)

Notes

{{ $appointment->notes }}
@endif @if($appointment->prescription)

Prescription

Prescribed On: {{ $appointment->prescription->created_at->format('F j, Y') }}

Status: {{ ucfirst($appointment->prescription->status) }}

Medications:

    @foreach($appointment->prescription->items as $item)
  • {{ $item->medication_name }} - {{ $item->dosage }} - {{ $item->instructions }}
  • @endforeach
@endif
@if($appointment->status === 'scheduled') Reschedule Appointment Cancel Appointment @endif