Consultations

@if (session()->has('message'))
{{ session('message') }}
@endif
@forelse ($consultations as $consultation) @empty @endforelse
Patient Doctor Type Date Status Actions
{{ $consultation->patient->full_name }} {{ ucwords(strtolower($consultation->doctor->name)) }} {{ ucfirst(str_replace('_', ' ', $consultation->consultation_type)) }} {{ $consultation->consultation_date->format('M d, Y') }} {{ ucfirst(str_replace('_', ' ', $consultation->status)) }}
No consultations found
{{ $consultations->links() }}
@if($showCreateModal || $showEditModal)

{{ $editingConsultation ? 'Edit Consultation' : 'New Consultation' }}

@if(count($searchResults) > 0 && !$patient_id)
@foreach($searchResults as $patient) @endforeach
@endif
@if($patient_id)
✓ Patient selected
@endif
@endif