@extends('layouts.app') @section('title', 'Report') @section('content')

Business Reports

{{-- ========================================================= --}} {{-- 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 --}} {{-- ========================================================= --}}

Generate Report

{{-- Report Type --}}
{{-- From Date --}}
{{-- To Date --}}
{{-- Customer --}}
{{-- Export Format --}}
{{-- Buttons --}}
{{-- ========================================================= --}} {{-- MONTHLY SALES OVERVIEW --}} {{-- ========================================================= --}}

Monthly Sales Overview

@forelse($monthlyProfit as $month) @empty @endforelse
Month Profit
{{ $month->month_name }} Rs. {{ number_format($month->profit, 2) }}
No sales data available.
{{-- ========================================================= --}} {{-- TOP SELLING PRODUCTS --}} {{-- ========================================================= --}}

Top Selling Products

@forelse($topSellingProducts as $product) @empty @endforelse
Item Units Sold Current Stock
{{ $product->item_name }} {{ $product->units_sold }} {{ $product->item_quantity }}
No sales data available.
{{-- ========================================================= --}} {{-- LOW STOCK PRODUCTS --}} {{-- ========================================================= --}}

Low Stock Products

@forelse($lowStockProducts as $product) @empty @endforelse
Item Category Current Stock Minimum Stock
{{ $product->item_name }} {{ $product->category->category_name ?? 'N/A' }} {{ $product->item_quantity }} {{ $product->minimum_stock }}
No low stock items.
{{-- ========================================================= --}} {{-- JAVASCRIPT --}} {{-- ========================================================= --}} {{-- ========================================================= --}} {{-- PRINT CSS --}} {{-- ========================================================= --}} @endsection