Reports

Business snapshot for {{ $rangeLabel }}.

Sales
{{ number_format($summary['sales_total'], 2) }}
{{ $summary['sales_count'] }} invoice(s)
Gross Profit
{{ number_format($summary['sales_profit'], 2) }}
Purchases
{{ number_format($summary['purchases_total'], 2) }}
{{ $summary['purchases_count'] }} order(s)
Inventory Value
{{ number_format($summary['inventory_value'], 2) }}
Low Stock
{{ $summary['low_stock_count'] }}
Out of Stock
{{ $summary['out_of_stock_count'] }}
Receivables
{{ number_format($summary['receivables'], 2) }}
Payables
{{ number_format($summary['payables'], 2) }}

Top Customers

@if ($topCustomers->isEmpty()) @else
@foreach ($topCustomers as $customer)
{{ $customer->name }}
{{ $customer->count }} invoice(s)
{{ number_format($customer->total, 2) }}
@endforeach
@endif

Top Suppliers

@if ($topSuppliers->isEmpty()) @else
@foreach ($topSuppliers as $supplier)
{{ $supplier->name }}
{{ $supplier->count }} order(s)
{{ number_format($supplier->total, 2) }}
@endforeach
@endif
@foreach ($reports as $report)

{{ $report['title'] }}

{{ $report['description'] }}

@endforeach