@extends('layouts.app') @section('title', 'Outpatient') @section('content')
| Patient | Visit # | Clinician | Status | Invoice | Actions |
|---|---|---|---|---|---|
| {{ $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. | |||||