@extends('Admin.layout') @section('content') {{-- Header --}}
Details
{{-- Patient identity strip --}}
{{ strtoupper(substr($patient->patient_name, 0, 1)) }}
{{ $patient->patient_name }}
Patient ID · {{ $patient->sheet_no }}
{{-- Step navigation --}}
{{-- Form panel --}}
Vitals
{{-- Vitals history — collapsible accordion --}}
@forelse($vitalsHistory as $entry)
{{ $entry->created_at->format('d M Y') }} {{ $entry->created_at->format('h:i A') }}
BP {{ $entry->bp ?? '-' }} Pulse {{ $entry->pulse_rate ?? '-' }} Temp {{ $entry->temperature ?? '-' }}°F SpO2 {{ $entry->spo2 ?? '-' }}% Wt {{ $entry->weight ?? '-' }}kg Ht {{ $entry->height ?? '-' }}cm RR {{ $entry->respiratory_rate ?? '-' }} CBG {{ $entry->cbg ?? '-' }}
@empty
No vitals history found.
@endforelse
@csrf
@error('height')
{{ $message }}
@enderror
@error('weight')
{{ $message }}
@enderror
@error('temperature')
{{ $message }}
@enderror
@error('pulse_rate')
{{ $message }}
@enderror
@error('respiratory_rate')
{{ $message }}
@enderror
@error('bp')
{{ $message }}
@enderror
@error('spo2')
{{ $message }}
@enderror
@error('cbg')
{{ $message }}
@enderror
{{-- Sticky bottom action bar --}}
@endsection