Status
{{ ucfirst($consultation->status) }}
Type
{{ ucfirst($consultation->type) }}
Scheduled At
{{ $consultation->formatDate('scheduled_at', 'M d, Y g:i A') }}
Created At
{{ $consultation->created_at->format('M d, Y g:i A') }}
Updated At
{{ $consultation->updated_at->format('M d, Y g:i A') }}
Patient
@if($consultation->patient) {{ $consultation->patient->name }} @else N/A @endif
Doctor
@if($consultation->doctor) {{ $consultation->doctor->name }} @else Not Assigned @endif