IPD Vitals Chart

@unless($admission->status === 'Discharged') @endunless
@if($this->showForm)

New Vital Signs Entry

@endif @if($this->latestVital)

Latest Vitals ({{ $this->latestVital->recorded_at->format('d M Y, h:i A') }})

BP

{{ $this->latestVital->bp ?? '-' }}

@if($this->latestVital->isAbnormalBp()) Abnormal @endif

Pulse

{{ $this->latestVital->pulse ?? '-' }}

bpm

Temp

{{ $this->latestVital->temperature ? $this->latestVital->temperature . '°F' : '-' }}

@if($this->latestVital->isAbnormalTemperature()) Abnormal @endif

SpO2

{{ $this->latestVital->spo2 ? $this->latestVital->spo2 . '%' : '-' }}

@if($this->latestVital->isAbnormalSpo2()) Low @endif

Weight

{{ $this->latestVital->weight ? $this->latestVital->weight . ' kg' : '-' }}

@endif @if($this->vitalsHistory->count() > 0)
@foreach($this->vitalsHistory as $vital) @endforeach
Date/Time BP Pulse Temp SpO2 RR Weight Recorded By
{{ $vital->recorded_at->format('d M, h:i A') }} {{ $vital->bp ?? '-' }} {{ $vital->pulse ?? '-' }} {{ $vital->temperature ? $vital->temperature . '°F' : '-' }} {{ $vital->spo2 ? $vital->spo2 . '%' : '-' }} {{ $vital->resp_rate ?? '-' }} {{ $vital->weight ? $vital->weight . ' kg' : '-' }} {{ $vital->recordedBy?->name ?? '-' }}
@else

No vitals recorded yet.

@endif