BP
{{ $this->latestVital->bp ?? '-' }}
@if($this->latestVital->isAbnormalBp()) Abnormal @endifPulse
{{ $this->latestVital->pulse ?? '-' }}
bpm
Temp
{{ $this->latestVital->temperature ? $this->latestVital->temperature . '°F' : '-' }}
@if($this->latestVital->isAbnormalTemperature()) Abnormal @endifSpO2
{{ $this->latestVital->spo2 ? $this->latestVital->spo2 . '%' : '-' }}
@if($this->latestVital->isAbnormalSpo2()) Low @endifWeight
{{ $this->latestVital->weight ? $this->latestVital->weight . ' kg' : '-' }}
| 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 ?? '-' }} |
No vitals recorded yet.