@extends('secretary.layouts.app') @section('title','سجل المرضى') @section('page-title','سجل المرضى') @section('content')
| المريض | الهاتف | الجنس | فصيلة الدم | أمراض مزمنة | إجراءات |
|---|---|---|---|---|---|
|
{{ $p->user->name }}
@if($p->date_of_birth)
{{ $p->date_of_birth->age }} سنة
@endif
|
{{ $p->user->phone ?? '—' }} | {{ $p->gender==='male' ? 'ذكر' : ($p->gender==='female' ? 'أنثى' : '—') }} | @if($p->blood_type) {{ $p->blood_type }} @else — @endif | @if($p->chronic_diseases) {{ Str::limit($p->chronic_diseases,30) }} @else — @endif | |
| لا يوجد مرضى مطابقون | |||||