@extends('layouts.admin') @section('title', 'Reports & Financial Analytics - Orange Groceries Admin') @section('header_title', 'Business Reports & Financial Analytics') @section('content')
Total Store Revenue
₹{{ number_format($totalRevenue, 2) }}
Delivered Orders Count
{{ $totalOrdersCount }} Orders
Total GST Collected
₹{{ number_format($totalGst, 2) }}

Sales Summary Breakdown

@foreach($salesData as $row) @endforeach
Date / Period Orders Count Total Revenue
{{ $row->date }} {{ $row->count }} Orders ₹{{ number_format($row->total, 2) }}

Top 10 Selling Products

@foreach($topProducts as $top) @endforeach
Product Name Units Sold Total Sales
{{ $top->product_name }} {{ $top->total_qty }} units ₹{{ number_format($top->total_revenue, 2) }}
@endsection