@extends('admin.layouts.master') @section('css') @endsection @section('title') عرض بيانات العميل @endsection @section('content')
| # | التاريخ | الوقت | الطبيب | الحالة |
|---|---|---|---|---|
| {{ $appointment->id }} | {{ $appointment->appointment_date }} | {{ $appointment->start_time }} | {{ $appointment->doctor?->user?->name }} | {{ $appointment->status }} |
| لا توجد مواعيد مسجلة لهذا المريض. | ||||
| # | العنوان | الطبيب | الحالة | تاريخ الإنشاء | إجراءات |
|---|---|---|---|---|---|
| {{ $plan->id }} | {{ $plan->title ?? '-' }} | {{ $plan->doctor?->user?->name ?? '-' }} | {{ $plan->status }} | {{ $plan->created_at?->format('Y-m-d') }} | عرض الخطة |
لا توجد خطط علاج لهذا المريض.
@endif| # | رقم الفاتورة | التاريخ | الإجمالي | المدفوع | المتبقي | الحالة | دفع | عرض |
|---|---|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ $invoice->invoice_number }} | {{ $invoice->date->format('Y-m-d') }} |
{{ number_format($invoice->total, 2) }}
|
{{ number_format($invoice->paid_amount, 2) }}
|
{{ number_format($remaining, 2) }}
|
@switch($invoice->status) @case('unpaid') غير مدفوعة @break @case('partial') مدفوعة جزئياً @break @case('paid') مدفوعة بالكامل @break @case('refunded') مسترجعة @break @endswitch | @if($remaining > 0) @else لا يوجد متبقي @endif | عرض |
| لا توجد فواتير لهذا المريض حتى الآن. | ||||||||
| # | الملف | النوع | الوصف | التاريخ | إجراءات |
|---|---|---|---|---|---|
| {{ $attachment->id }} | عرض الملف | {{ $attachment->file_type ?: '-' }} | {{ $attachment->description ?: '-' }} | {{ $attachment->created_at->format('Y-m-d H:i') }} | |
| لا توجد مرفقات لهذا المريض. | |||||