@extends('layouts.app') @section('title', 'Direct Encounter · ' . ($visit->visit_number ?? '')) @section('content') @php $isLab = $visit->visit_type === 'direct_lab'; $patient = $visit->patient; @endphp
{{ ucfirst($patient->gender ?? '—') }} · {{ $patient->age ?? '—' }} · Direct {{ $isLab ? 'Lab' : 'Imaging' }} Encounter · Checked in {{ optional($visit->check_in_at)->format('d M Y, H:i') }}
| Test | Sample | Status | Result |
|---|---|---|---|
| {{ $o->test_name }} | {{ $o->sample_type ?: '—' }} | {{ str_replace('_', ' ', $o->status) }} | @if($o->result && $o->result->status === 'validated') View @elseif($o->result) Pending validation @else Awaiting @endif |
| No orders. | |||
| Type | Body Part | Status | Indication |
|---|---|---|---|
| {{ $r->imaging_type }} | {{ $r->body_part ?: '—' }} | {{ str_replace('_', ' ', $r->status) }} | {{ $r->clinical_indication ?: '—' }} |
| No requests. | |||
No invoice on file.
@endifPatient needs clinical care after the {{ $isLab ? 'lab' : 'imaging' }} work? Convert this encounter into a full OPD visit. Existing orders and the invoice carry over.