Practice Dashboard

Welcome back to the admin panel for {{ $tenant->name }}.

Total Bookings

{{ $totalBookings }}
📅

Recent Bookings

@if($recentBookings->isEmpty())

No recent bookings found.

@else
@foreach($recentBookings as $booking) @endforeach
Date & Time Patient Status
{{ $booking->date }}
{{ $booking->time }}
{{ $booking->user ? $booking->user->name : 'N/A' }} {{ $booking->status }}
@endif