Reports Dashboard

Comprehensive business analytics and reports

Quick Overview

This Month Sales

{{ \App\Models\Sale::whereMonth('created_at', now()->month)->count() }}

Total Customers

{{ \App\Models\Customer::count() }}

Active Inventory

{{ \App\Models\Inventory::where('status', 'available')->count() }}

Pending Payments

{{ \App\Models\Payment::where('status', 'pending')->count() }}

Use the filters in each report to customize date ranges and view specific data segments. Export options are available in detailed reports.