@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

Total Restaurants Onboarded

{{ $totalRestaurants ?? '0' }}

Total Active Branches

{{ $activeBranches ?? '0' }}

Total Guests Served

{{ $totalGuests ?? '0' }}

Total Queue Entries

{{ $queueEntries ?? '0' }}

Total Reservations

{{ $totalReservations ?? '0' }}

WhatsApp + Web

Average Wait Time

{{ $avgWaitTime ?? '0' }} mins

WhatsApp Adoption

{{ $whatsappAdoption ?? '0' }}%

Manual Entries

{{ $manualEntries ?? '0' }}

No-Show %

{{ $noShowPercent ?? '0' }}%

Cancellation %

{{ $cancellationPercent ?? '0' }}%

Free Pack - Restaurant

{{ $freePackRestaurant ?? '0' }}

Premium Pack - Restaurant

{{ $premiumPackRestaurant ?? '0' }}

Free Pack - Food Court

{{ $freePackFoodCourt ?? '0' }}

Premium Pack - Food Court

{{ $premiumPackFoodCourt ?? '0' }}

% 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 }} {{ $restaurant->booking_count }}
No data available

Users List

@forelse($users ?? [] as $index => $user) @empty @endforelse
S.No User Name User Role Email Phone Number Status
{{ $index + 1 }} {{ $user->name }} {{ $user->role }} {{ $user->email }} {{ $user->phone }} @if($user->status == 'active') Active @else Inactive @endif
No users found
@endsection @section('script') @endsection