{{ __('Dashboard') }}

Welcome back, {{ Auth::user()->name }}! 👋

@if($isAdmin) You're logged in as a Main Admin @else You're logged in as a Tenant User @endif

@if($isAdmin)

Total Users

{{ $stats['total_users'] }}

Tenant Users

{{ $stats['total_tenants'] }}

Admin Users

{{ $stats['total_admins'] }}

Quick Actions

@else

Categories

{{ $stats['total_categories'] }}

Total Services

{{ $stats['total_services'] }}

Total Resources

{{ $stats['total_resources'] }}

● {{ $stats['resources_available'] }} Available ● {{ $stats['resources_maintenance'] }} Maintenance ● {{ $stats['resources_unavailable'] }} Unavailable

Active Services

{{ $stats['active_services'] }}

Inactive Services

{{ $stats['inactive_services'] }}

Today's Booked

{{ $stats['today_bookings'] }}

Month Revenue

${{ number_format($stats['this_month_revenue'], 2) }}

Recent Activity

View All
@if($recentBookings->count() > 0)
@foreach($recentBookings as $booking) @endforeach
Customer Service Status
{{ $booking->customer_name }} {{ $booking->service->name }} ({{ $booking->booking_date->format('M d') }}) {{ ucfirst($booking->status) }}
@else

No recent bookings recorded.

@endif
@endif