@extends('admin.layouts.master') @section('title', 'خطط العلاج') @section('content')
| # | المريض | الطبيب | العنوان | الحالة | تاريخ الإنشاء | إجراءات |
|---|---|---|---|---|---|---|
| {{ $plan->id }} |
{{ $plan->patient?->first_name }} {{ $plan->patient?->last_name }}
كود: {{ $plan->patient?->code ?? '-' }} |
{{ $plan->doctor?->user?->name ?? '-' }} | {{ $plan->title ?? '-' }} | @switch($status) @case('draft') مسودة @break @case('ongoing') جارية @break @case('completed') مكتملة @break @case('cancelled') ملغاة @break @default غير معروف @endswitch | {{ $plan->created_at?->format('Y-m-d') }} |
عرض
{{-- --}}
|
| لا توجد خطط علاج مسجلة حتى الآن. | ||||||