Cancelar
@csrf {{-- Alerta si hay antecedentes importantes --}} @php $h = $patient->clinicalHistory; @endphp @if($h && ($h->allergies || $h->contraindications))

⚠ Alertas del paciente

@if($h->allergies)

Alergias: {{ $h->allergies }}

@endif @if($h->contraindications)

Contraindicaciones: {{ $h->contraindications }}

@endif
@endif
{{-- Signos Vitales --}}
@foreach([ 'weight' => 'Peso (kg)', 'height' => 'Talla (cm)', 'bmi' => 'IMC', 'temperature' => 'Temperatura (°C)', 'systolic_bp' => 'P.A. Sistólica', 'diastolic_bp' => 'P.A. Diastólica', 'heart_rate' => 'Frec. cardíaca (lpm)', 'respiratory_rate'=> 'Frec. respiratoria', 'oxygen_sat' => 'Sat. O₂ (%)', ] as $key => $label) @endforeach
{{-- Examen físico --}} {{-- Diagnósticos --}}
{{-- Valoración y plan --}}
Cancelar Guardar evolución