@extends('layouts.app')
@section('title', 'Report')
@section('content')
{{-- ========================================================= --}}
{{-- SUMMARY CARDS --}}
{{-- ========================================================= --}}
{{-- Total Orders --}}
Total Orders
{{ $totalOrders }}
{{-- Total Customers --}}
Total Customers
{{ $totalCustomers }}
{{-- Total Products --}}
Total Products
{{ $totalProducts }}
{{-- Total Profit --}}
Total Profit
This Month
Rs. {{ number_format($totalProfit, 2) }}
{{-- Pending Payments --}}
Pending Payments
Rs. {{ number_format($pendingPayments, 2) }}
{{-- Low Stock --}}
Low Stock Items
{{ $lowStockItems }}
{{-- ========================================================= --}}
{{-- GENERATE REPORT --}}
{{-- ========================================================= --}}
{{-- ========================================================= --}}
{{-- MONTHLY SALES OVERVIEW --}}
{{-- ========================================================= --}}
| Month |
Profit |
@forelse($monthlyProfit as $month)
|
{{ $month->month_name }}
|
Rs. {{ number_format($month->profit, 2) }}
|
@empty
|
No sales data available.
|
@endforelse
{{-- ========================================================= --}}
{{-- TOP SELLING PRODUCTS --}}
{{-- ========================================================= --}}
| Item |
Units Sold |
Current Stock |
@forelse($topSellingProducts as $product)
|
{{ $product->item_name }}
|
{{ $product->units_sold }}
|
{{ $product->item_quantity }}
|
@empty
|
No sales data available.
|
@endforelse
{{-- ========================================================= --}}
{{-- LOW STOCK PRODUCTS --}}
{{-- ========================================================= --}}
| Item |
Category |
Current Stock |
Minimum Stock |
@forelse($lowStockProducts as $product)
|
{{ $product->item_name }}
|
{{ $product->category->category_name ?? 'N/A' }}
|
{{ $product->item_quantity }}
|
{{ $product->minimum_stock }}
|
@empty
|
No low stock items.
|
@endforelse
{{-- ========================================================= --}}
{{-- JAVASCRIPT --}}
{{-- ========================================================= --}}
{{-- ========================================================= --}}
{{-- PRINT CSS --}}
{{-- ========================================================= --}}
@endsection