@extends('layouts.app') @section('title', 'Outpatient') @section('content')

Outpatient Visits

Completed Outpatient Visits

Today's OPD Visits

@forelse($visits as $v)@empty@endforelse
PatientVisit #ClinicianStatusInvoiceActions
{{ $v->patient->full_name ?? '' }}{{ $v->visit_number }}{{ $v->clinician->name ?? '-' }}{{ ucfirst(str_replace('_',' ',$v->status)) }}{{ $v->invoice ? 'KES '.number_format($v->invoice?->total_amount) : '-' }}View
No OPD visits today.
{{ $visits->links() }}
@endsection