Dashboard

Showing activity for {{ $rangeLabel }}.

@if ($can['sales'])
Sales in Period
{{ number_format($todaySalesTotal, 2) }}
{{ $todaySalesCount }} sale(s)
@endif @if ($can['purchases'])
Purchases in Period
{{ number_format($todayPurchasesTotal, 2) }}
{{ $todayPurchasesCount }} order(s)
@endif @if ($can['sales'])
Gross Profit in Period
{{ number_format($todayProfit, 2) }}
@endif @if ($can['inventory'])
Inventory Value (excl. GST)
{{ number_format($inventoryValue, 2) }}
@endif @if ($can['products'])
Total Products
{{ $totalProducts }}
@endif @if ($can['inventory'])
Total Units in Stock
{{ number_format($totalUnits) }}
Low Stock
{{ $lowStockCount }}
Out of Stock
{{ $outOfStockCount }}
@endif
@if ($can['customers'] || $can['suppliers'])
@if ($can['customers'])
Customer Receivables
{{ number_format($receivables, 2) }}
@endif @if ($can['suppliers'])
Supplier Payables
{{ number_format($payables, 2) }}
@endif
@endif @if ($can['inventory'])

Fast-Moving Products

View all →
@if ($fastMoving->isEmpty()) @else
@foreach ($fastMoving as $product)
{{ $product->name }} {{ $product->units_sold }} sold
@endforeach
@endif

Slow-Moving / Dead Stock

View all →
@if ($slowMoving->isEmpty()) @else
@foreach ($slowMoving as $product)
{{ $product->name }} {{ $product->units_sold }} sold
@endforeach
@endif
@endif @if ($can['sales'] || $can['purchases'])
@if ($can['sales'])

Recent Sales in Period

@if ($recentSales->isEmpty()) @else @endif
@endif @if ($can['purchases'])

Recent Purchases in Period

@if ($recentPurchases->isEmpty()) @else @endif
@endif
@endif