@extends('layouts.app') @section('title', 'قائمة انتظار الأطباء') @section('page_title', 'قائمة انتظار الأطباء') @section('content')
@foreach($doctors as $doctor)
د. {{ $doctor->name }}

{{ $doctor->waiting_count }}

في الانتظار

{{ $doctor->total_today }}

مواعيد اليوم
@endforeach
@if($doctors->isEmpty())

لا يوجد أطباء

لم يتم العثور على أطباء في النظام

@endif @endsection @push('scripts') @endpush