@extends("layouts.app", ["title" => "Record Consultation"]) @section("content_body") @include("shared.partials.page-title", ["subtitle" => "Healthcare", "title" => "Record Clinical Consultation"])
@csrf

Patient & Visit Details

Recording details for visit at household {{ $visit->family->name }} on {{ $visit->scheduled_at->format('Y-m-d') }}

@error('patient_id')
{{ $message }}
@enderror
@error('patient_satisfaction')
{{ $message }}
@enderror

Intake & Reason for Visit

Vital Signs

Pathological & Surgical History

@php $conditions = [ 'hypertension' => 'Arterial Hypertension (HTA)', 'diabetes' => 'Diabetes Mellitus (DM)', 'ischemic_heart_disease' => 'Ischemic Heart Disease (CI)', 'asthma' => 'Asthma (Asma)', 'cancer' => 'Cancer', 'psychiatric' => 'Psychiatric Disease (Psiquiatría)', 'other' => 'Other / Otros' ]; @endphp @foreach ($conditions as $key => $label) @endforeach
Condition Personal Father (Padre) Mother (Madre) Child (Hijo) Other (Otros)
{{ $label }}

Review of Systems / Interrogatorio por Sistemas

Respiratory System
Cardiovascular System
Digestive System
Genitourinary System
Neurological & Others

Physical Examination / Examen Físico

@php $examSections = [ 'general' => 'General (Skin, Mucosas, Subcutaneous Tissue, etc.)', 'regional' => 'Regional (Head, Neck, Thorax, Abdomen)', 'respiratory' => 'Respiratory System', 'cardiovascular' => 'Cardiovascular System', 'digestive' => 'Digestive System', 'nervous' => 'Nervous System' ]; @endphp @foreach ($examSections as $secKey => $secLabel)
{{ $secLabel }}
@endforeach

Evolution, Diagnostics & Treatment

Discharge, Disability & Follow-up Plan

Cancel
@endsection