@extends('layouts.app') @section('content')
| Queue No | Encounter | Patient | Age / Sex | Patient No | Visit No | Service | Priority | Arrival | Action |
|---|---|---|---|---|---|---|---|---|---|
|
{{ $index + 1 }}
|
{{ $encounter->encounter_no }}
{{
ucfirst(
$encounter->status
?? 'waiting'
)
}}
|
{{ $encounter->first_name }}
{{ $encounter->last_name }}
|
{{ $age ?? '—' }} yrs /
{{ strtoupper($encounter->gender ?? '—') }}
|
{{ $encounter->patient_no }} | {{ $encounter->visit_no }} | {{ ucfirst( $encounter->visit_type ?? 'Medical' ) }} | {{ $priority }} |
{{ \Carbon\Carbon::parse(
$encounter->created_at
)->format('H:i') }}
{{
\Carbon\Carbon::parse(
$encounter->created_at
)->diffForHumans()
}}
|
Start Triage |