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

Sales Performance Ledger

Comprehensive audit of physical retail billing and approved on-field exhibition streams.

Total Period Retail Billings

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

Direct client bills registered
Live Exhibition Field Revenue

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

On-site manager verified counters
Exhibition Stream Earnings
@forelse($exhibition_stream as $stream) @empty @endforelse
Event Name Location & City Approved Total Revenue
{{ $stream->exhibition->name }} {{ $stream->exhibition->city }} ₹{{ number_format($stream->sales_amount, 2) }}
No verified exhibition metrics recorded yet.
Customer Billing Registers
@php // Fetching the original customer bills context directly via Model relation standard $customer_bills = \App\Models\Customer::latest()->get(); @endphp @forelse($customer_bills as $bill) @empty @endforelse
Date Customer Name City Amount
{{ $bill->created_at ? $bill->created_at->format('Y-m-d') : '2026-05-14' }} {{ $bill->name }} {{ $bill->city }} ₹{{ number_format($bill->bill_amount, 2) }}
No shop customer registrations recorded yet.
@endsection