Appointment Details

Back to Appointments @if($appointment->status == 'scheduled') Edit Appointment Cancel Appointment @endif

Appointment Information

Status: {{ Consultation::STATUSES[$appointment->status] }}
Date & Time: {{ $appointment->formatDate('scheduled_at', 'F j, Y g:i A') }}
Type: {{ $appointment->type }}
@if($appointment->started_at)
Started At: {{ $appointment->started_at->format('F j, Y g:i A') }}
@endif @if($appointment->ended_at)
Ended At: {{ $appointment->ended_at->format('F j, Y g:i A') }}
@endif

Participants

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

Notes

@if($appointment->patient_complaint)

{{ $appointment->patient_complaint }}

@else

No notes provided.

@endif
@if($appointment->status == 'completed')

Consultation Results

@if($appointment->doctor_notes)

Doctor's Notes:

{{ $appointment->doctor_notes }}

@endif @if($appointment->diagnosis)

Diagnosis:

{{ $appointment->diagnosis }}

@endif @if($appointment->treatment_plan)

Treatment Plan:

{{ $appointment->treatment_plan }}

@endif @if($appointment->follow_up_instructions)

Follow-up Instructions:

{{ $appointment->follow_up_instructions }}

@endif @if($appointment->follow_up_date)

Follow-up Date:

{{ $appointment->follow_up_date->format('F j, Y') }}

@endif
@endif