{{-- Filters Card --}}
{{-- Results Table --}}
@forelse($visits as $visit) @empty @endforelse
Date / Token Patient Doctor / Service Type Fee Status
{{ $visit->consultation_date->format('d M, Y') }}
Token #{{ $visit->token_number }}
{{ $visit->patient->full_name }}
{{ $visit->patient->uhid }} | {{ $visit->patient->phone }}
{{ $visit->doctor->full_name ?? '—' }}
{{ $visit->service->name ?? 'OPD Consultation' }}
{{ $visit->visit_type }} ₹{{ number_format($visit->fee, 0) }} {{ $visit->status }}

No visits found for the selected period.

{{ $visits->links() }}