@extends('admin.layouts.app') @section('top_css') @endsection @section('content')
@can('doctor-list')
Active Doctors

{{ $totalDoctors }}

Total available doctors

@endcan @can('patient-list')
Patients

{{ $totalPatients }}

Total patient records

@endcan @canany(['appointment-list','appointment-view'])
Appointments

{{ $totalAppointments }}

Total scheduled appointments

@endcanany @can('report-list')
Lab Reports

{{ $totalLabReports }}

Reports created in lab

@endcan
@canany(['appointment-list'])

Today Appointments

@can('appointment-view') @endcan @forelse($recentAppointments as $key => $appointment) @can('appointment-view') @endcan @empty @endforelse
# Appointment Patient Timing Status DoctorAction
{{ $key + 1 }} {{ $appointment->appointment_number }} {{ $appointment->full_name }} {{ $appointment->slot_timing }} {!! appointmentStatus(false, $appointment->status) !!} {{ $appointment->doctor->name ?? 'N/A' }}
No recent appointments available
@endcanany
@endsection