@extends('layouts.app') @section('title', 'لوحة الطبيب') @section('page_title') لوحة الطبيب - د. {{ auth()->user()->name }} @endsection @section('content')
مواعيد اليوم
مرضى الطبيب
حالات مكتملة
| الوقت | اسم المريض | رقم المريض | رقم الهاتف | نوع الزيارة | الحالة | الإجراءات |
|---|---|---|---|---|---|---|
| {{ $appointment->appointment_time->format('H:i') }} | {{ $appointment->patient->name }} | {{ $appointment->patient->patient_number ?? '-' }} | {{ $appointment->patient->mobile }} | {{ $appointment->type }} | @switch($appointment->status) @case('مؤكد') {{ $appointment->status }} @break @case('في الانتظار') {{ $appointment->status }} @break @case('جديد') {{ $appointment->status }} @break @case('مكتمل') {{ $appointment->status }} @break @case('ملغي') {{ $appointment->status }} @break @endswitch |