@extends('layouts.app') @section('title', 'زيارة جديدة - ' . $patient->full_name) @section('content')
زيارة جديدة لـ {{ $patient->file_number }}
{{ $patient->full_name }}
{{ $patient->gender === 'female' ? 'أنثى' : 'ذكر' }} @if($patient->age !== null) {{ $patient->age }} سنة @endif @if($patient->blood_type) {{ $patient->blood_type }} @endif {{ now()->format('Y-m-d') }}
رجوع للملف
@csrf
{{-- Vitals --}}

العلامات الحيوية

@php $vs = [ 'bp_systolic' => ['label' => 'الضغط الانقباضي', 'icon' => 'ti-arrow-up-bar', 'unit' => 'mmHg'], 'bp_diastolic' => ['label' => 'الضغط الانبساطي', 'icon' => 'ti-arrow-down-bar', 'unit' => 'mmHg'], 'heart_rate' => ['label' => 'النبض', 'icon' => 'ti-heartbeat', 'unit' => 'bpm'], 'temperature' => ['label' => 'الحرارة', 'icon' => 'ti-temperature', 'unit' => '°C'], 'weight' => ['label' => 'الوزن', 'icon' => 'ti-weight', 'unit' => 'كجم'], 'height' => ['label' => 'الطول', 'icon' => 'ti-ruler', 'unit' => 'سم'], 'o2' => ['label' => 'الأكسجين', 'icon' => 'ti-lungs', 'unit' => '%'], 'rr' => ['label' => 'التنفس', 'icon' => 'ti-wind', 'unit' => 'rpm'], ]; @endphp @foreach($vs as $k => $meta)
{{ $meta['unit'] }}
@endforeach
{{-- Chief Complaint + HPI --}}

الشكوى والتاريخ المرضي

{{-- Examination --}}

الفحص الإكلينيكي

{{-- Diagnosis --}}

التشخيص

{{-- Treatment Plan --}}

خطة العلاج

{{-- Prescription --}}

الوصفة الطبية

الدواء الجرعة التكرار المدة تعليمات
{{-- Follow-up --}}

المتابعة

{{-- Footer save buttons (mobile-friendly) --}}
{{-- Sticky right panel --}}
@if($patient->allergies) @endif
@if($patient->photo) @else {{ mb_substr($patient->first_name,0,1) }}{{ mb_substr($patient->last_name,0,1) }} @endif
{{ $patient->full_name }}
{{ $patient->file_number }} @if($patient->phone) · {{ $patient->phone }}@endif
@if($patient->age !== null || $patient->blood_type)
@if($patient->age !== null) {{ $patient->age }} سنة @endif {{ $patient->gender === 'female' ? 'أنثى' : 'ذكر' }} @if($patient->blood_type) {{ $patient->blood_type }} @endif
@endif
@if($patient->chronic_diseases)

أمراض مزمنة

{{ $patient->chronic_diseases }}

@endif @if($patient->current_medications)

أدوية حالية

{{ $patient->current_medications }}

@endif @if($patient->medicalRecords->isNotEmpty())

آخر زيارات

@endif
@endsection @push('scripts') @endpush