@php $req = $pathologyRequest?->payload ?? []; $rep = $pathologyReport?->payload ?? []; $ver = $pathologyVerification?->payload ?? []; @endphp

Pathology overview

Clinic pathology request through verification — complementary to the Lab app queue.

Specimen

{{ $req['specimen_type'] ?? '—' }}

{{ $req['site'] ?? '—' }}

Urgency

{{ $req['urgency'] ?? '—' }}

{{ \Illuminate\Support\Str::limit($req['clinical_history'] ?? '—', 40) }}

Diagnosis

{{ \Illuminate\Support\Str::limit($rep['diagnosis'] ?? '—', 40) }}

{{ $ver['outcome'] ?? (! empty($ver['verified']) ? 'Verified' : '—') }}

@if (! empty($clinicalAlerts))

Alerts

@foreach ($clinicalAlerts as $alert)

{{ $alert['message'] ?? '' }}

@endforeach
@endif