@extends('layouts.app') @section('title', 'Pasiyentlər') @section('content')

Pasiyentlər

Siyahı, axtarış və profilə keçid
Yarat
@forelse ($patients as $p) @empty @endforelse
Pasiyent MRN Əlaqə Doğum Cins Əməliyyat
{{ $p->user->name ?? '-' }}
{{ $p->user->email ?? '-' }}
{{ $p->mrn }} {{ $p->phone ?? $p->user->phone ?? '-' }} {{ $p->date_of_birth ?? '-' }} @php $g = $p->gender; $label = $g === 'male' ? 'Kişi' : ($g === 'female' ? 'Qadın' : ($g === 'other' ? 'Digər' : 'Naməlum')); @endphp {{ $label }}
{{ __('ui.common.open') }}
👤
Pasiyent tapılmadı
Yeni pasiyent yaradın və ya axtarış kriteriyasını dəyişin.
{{ $patients->links() }}
@endsection