@extends('layouts.app') @section('content-header')

Detail Pasien

@endsection @section('main-content')

Data Pasien

No. Rekam Medis: {{ $patient->medical_record_number }}

NIK: {{ $patient->identity_number }}

Nama Depan: {{ $patient->first_name }}

Nama Belakang: {{ $patient->last_name }}

Tanggal Lahir: {{ $patient->birth_date }}

Jenis Kelamin: {{ $patient->gender == 'L' ? 'Laki-Laki' : 'Perempuan' }}

No. HP: {{ $patient->phone_number }}

Email: {{ $patient->email }}

Golongan Darah: {{ $patient->blood_type }}

Alamat: {{ $patient->address }}

Alergi: {{ $patient->allergies }}

Konsumsi Obat Saat Ini: {{ $patient->current_medicines }}

Histori Medis: {{ $patient->medical_history }}

@endsection