@extends('layouts.app') @section('title', __('ui.dashboards.admin_title')) @section('content') @php $chartData = [ 'labels' => ['B.e', 'Ç.a', 'Ç', 'C.a', 'C', 'Ş', 'B'], 'values' => [3, 5, 2, 6, 4, 1, 2], ]; @endphp

{{ __('ui.dashboards.admin_title') }}

{{ __('ui.dashboards.admin_subtitle') }}
Pasiyentlər
{{ $counts['patients'] ?? 0 }}
Həkimlər
{{ $counts['doctors'] ?? 0 }}
Qəbullar
{{ $counts['appointments'] ?? 0 }}
Ödənişlər
{{ $counts['payments'] ?? 0 }}
Həftəlik dinamika
Demo qrafik
{{ __('ui.dashboards.recent_appointments') }}
{{ __('ui.common.view_all') }}
@forelse ($recentAppointments as $a) @empty @endforelse
# Tarix Pasiyent Həkim Status
#{{ $a->id }} {{ $a->scheduled_at }} {{ $a->patient->user->name ?? '-' }} {{ $a->doctor->user->name ?? '-' }} {{ $a->status }}
🗓️
Qəbul yoxdur
Yeni qəbul yaradıldıqdan sonra burada görünəcək.
@endsection