@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)
| {{ $patient->code }} |
{{ $patient->name }} |
{{ $patient->phone ?? '—' }} |
{{ $patient->blood_type ?? '—' }} |
الملف
تعديل
|
@empty
| لا يوجد مرضى بعد. |
@endforelse
@if($patients->hasPages())
{{ $patients->links() }}
@endif
@endsection