@extends('layouts.master') @section('title') @lang('translation.Dashboards') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Dashboards @endslot @slot('title') Dashboard @endslot @endcomponent

Filters

Reset

Total Restaurants Onboarded

{{ number_format($totalRestaurants) }}

Total Active Branches

{{ number_format($activeBranches) }}

Total Guests Served

{{ number_format($totalGuests) }}

Total Queue Entries

{{ number_format($queueEntries) }}

Total Reservations

{{ number_format($totalReservations) }}

WhatsApp + Web

Average Wait Time

{{ $avgWaitTime }} mins

WhatsApp Adoption

{{ $whatsappAdoption }}%

Manual Entries

{{ number_format($manualEntries) }}

No-Show %

{{ $noShowPercent }}%

Cancellation %

{{ $cancellationPercent }}%

Free Pack - Restaurant

{{ number_format($freePackRestaurant) }}

Premium Pack - Restaurant

{{ number_format($premiumPackRestaurant) }}

Free Pack - Food Court

{{ number_format($freePackFoodCourt) }}

Premium Pack - Food Court

{{ number_format($premiumPackFoodCourt) }}

% of Guests Seated Under 5 Minutes

Peak Wait Time (95th Percentile)

Busiest Time Slots (Platform-wide)

Large Group Handling % (6+ guests)

Subscription Revenue (Platform)

Average Bookings per Day (Platform)

Top Performing Restaurants by Volume

@forelse($topRestaurants as $index => $restaurant) @empty @endforelse
S.No Region Location Restaurant ID Restaurant Name Booking Count
{{ $index + 1 }} {{ $restaurant->region }} {{ $restaurant->location }} {{ $restaurant->restaurant_id }} {{ $restaurant->restaurant_name }} {{ number_format($restaurant->booking_count) }}
No data available

Users List

@forelse($users as $index => $user) @empty @endforelse
S.No User Name User Role Email Phone Number Branch Tenant Online Status Status Actions
{{ $index + 1 }}
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->role }} {{ $user->email }} {{ $user->phone }} {{ Str::limit($user->branch_name, 20) }} {{ Str::limit($user->tenant_name, 20) }} @if ($user->is_online) Online @else Offline @endif @if ($user->status == 'active') Active @else Inactive @endif

No users found

@endsection @section('script') @endsection