@extends('layouts.master') @section('title', 'Tenant Dashboard') @section('content') @component('components.breadcrumb') @slot('li_1') Dashboard @endslot @slot('title') Tenant Dashboard @endslot @endcomponent

Filters

Total Branches

{{ $stats['total_branches'] }}

Total Queue Entries

{{ $stats['total_queue_entries'] }}

Guests Served

{{ $stats['total_guests_served'] }}

Avg Wait Time

{{ $stats['avg_wait_time'] }} mins

WhatsApp Adoption

{{ $stats['whatsapp_adoption'] }}%

Repeat Customers

{{ $stats['repeat_customers'] }}%

Bookings Trend

Group Size Distribution

Top Branches (By Volume)

    @foreach($topBranches as $branch)
  • {{ $branch->branch_name }} {{ $branch->booking_count }} bookings
  • @endforeach

Peak Hours

    @foreach($peakHours as $hour)
  • {{ $hour['time_range'] }} {{ $hour['orders'] }} orders
  • @endforeach
@endsection @section('script') @endsection