@extends('layouts.app') @section('content')

Admin Business Intelligence Dashboard

Real-time analytical logs across central warehouse inventories and exhibition terminals.

New Entry
Quick Actions Desk
Single-click operational shortcuts
Gross Counter Revenue

₹{{ number_format($totalRevenue, 2) }}

Live POS Cashflow Sync
Inventory Asset Value

₹{{ number_format($warehouseStockValuation, 2) }}

Central Asset Valuation
Vendor Payable

₹{{ number_format($outstandingLiabilities, 2) }}

Outstanding Hub Dues
@php $stats = [ ['label' => 'Total Exhibitions', 'value' => $total_exhibitions, 'icon' => 'bi-grid-1x2', 'bg' => 'bg-primary'], ['label' => "Today's Exhibitions", 'value' => $todays_exhibitions, 'icon' => 'bi-calendar-check', 'bg' => 'bg-success'], ['label' => 'Pending Reports', 'value' => $pending_reports, 'icon' => 'bi-file-earmark-text', 'bg' => 'bg-warning'], ['label' => 'Active Employees', 'value' => $active_employees, 'icon' => 'bi-people', 'bg' => 'bg-info'] ]; @endphp @foreach($stats as $stat)

{{ $stat['label'] }}

{{ $stat['value'] }}

@endforeach
Annual Sales Revenue Curve Curve
Recent Customer Activity Matrix
@forelse($recent_customer_bills as $index => $bill) @empty @endforelse
SR. NO. CUSTOMER NAME CONTACT CITY BILL AMOUNT DATE
{{ $index + 1 }} {{ $bill->customer->name ?? 'Walk-in Buyer' }} {{ $bill->customer->contact ?? 'N/A' }} {{ $bill->customer->city ?? 'Field Counter' }} ₹{{ number_format($bill->bill_amount, 2) }} {{ \Carbon\Carbon::parse($bill->purchase_date)->format('d M, Y') }}
No customer bills logged yet.
@endsection