{{ __('Business Dashboard') }}

Employees

{{ $activeEmployeesCount }}

Appointments

{{ $upcomingAppointmentsCount }}

Current Plan

{{ $currentPlan ? $currentPlan->plan_name : 'No Active Plan' }}

Recent Appointments

@if($recentAppointments->count() > 0)
@foreach($recentAppointments as $appointment) @endforeach
Employee Doctor Date & Time Status Type Actions
{{ $appointment->patient->name }} {{ $appointment->doctor->name }} {{ $appointment->formatDate('scheduled_at', 'M d, Y g:i A') }} {{ Consultation::STATUSES[$appointment->status] }} {{ $appointment->type }} View
@else

No recent appointments found.

@endif