@extends('admin.layouts.app') @section('title','Patient Details') @section('header') Patient Details @endsection @section('content')
{{ $patient->full_name }} ({{ $patient->patient_code }})
Personal Information
First Name {{ $patient->first_name }}
Middle Name {{ $patient->middle_name }}
Last Name {{ $patient->last_name }}
Gender {{ $patient->gender }}
Date of Birth {{ $patient->date_of_birth?->format('Y-m-d') }}
National ID {{ $patient->national_id }}
Marital Status {{ $patient->marital_status }}
Phone {{ $patient->phone }}
Email {{ $patient->email }}
Address {{ $patient->address }}
Medical Information
Blood Group {{ $patient->blood_group }}
Height {{ $patient->height }} cm
Weight {{ $patient->weight }} kg
Allergies {{ $patient->allergies }}
Chronic Diseases {{ $patient->chronic_diseases }}
Status {{ $patient->status ? 'Active' : 'Inactive' }}
Emergency Contact
Name {{ $patient->emergency_contact_name }}
Phone {{ $patient->emergency_contact_phone }}
Relationship {{ $patient->emergency_contact_relation }}
Insurance Information
Insurance Company {{ $patient->insurance_company }}
Insurance Number {{ $patient->insurance_number }}
Notes
{!! nl2br(e($patient->notes)) !!}
Edit Back
@endsection