@extends('layouts.clinic') @section('title', niche_label('entities.customer', 'المرضى').' — '.config('app.name')) @section('content')
@if(session('success'))
{{ session('success') }}
@endif

{{ niche_label('entities.customer', 'المرضى') }}

@forelse($patients as $patient) @empty @endforelse
الكود الاسم الهاتف فصيلة الدم
{{ $patient->code }} {{ $patient->name }} {{ $patient->phone ?? '—' }} {{ $patient->blood_type ?? '—' }} الملف تعديل
لا يوجد مرضى بعد.
@if($patients->hasPages())
{{ $patients->links() }}
@endif

إضافة مريض

@csrf
@endsection