Comprehensive inventory insights and analysis
Inventory Value
{{ currency($summary['total_inventory_value']) }}
{{ $summary['active_items'] }} active items
Low Stock Items
{{ $summary['low_stock_items'] }}
{{ $summary['out_of_stock_items'] }} out of stock
Wastage Cost
{{ currency($summary['total_wastage_cost']) }}
{{ currency($summary['pending_wastage_cost']) }} pending
Stock Movements
{{ number_format($summary['total_movements']) }}
{{ $summary['total_productions'] }} productions
{{ $wastage->item->name ?? 'N/A' }}
{{ number_format($wastage->total_quantity, 2) }} {{ $wastage->item->unit->abbreviation ?? '' }} • {{ $wastage->incident_count }} incidents
Expected Cost
{{ currency($productionVariance->total_expected) }}
Actual Cost
{{ currency($productionVariance->total_actual ?? 0) }}
Avg Variance
@php $variance = $productionVariance->avg_variance_pct ?? 0; $isPositive = $variance > 0; @endphp{{ $isPositive ? '+' : '' }}{{ number_format($variance, 1) }}%
{{ $production->batch_number }}
{{ $production->recipe->name ?? 'N/A' }}
| Category | Items | Total Stock | Total Value | % of Total |
|---|---|---|---|---|
| {{ $category->category->name ?? 'Uncategorized' }} | {{ $category->item_count }} | {{ number_format($category->total_stock, 2) }} | {{ currency($category->total_value) }} | {{ $totalValue > 0 ? number_format(($category->total_value / $totalValue) * 100, 1) : 0 }}% |
| Item | Category | Current Stock | Minimum Stock | Status |
|---|---|---|---|---|
|
{{ $item->name }}
{{ $item->sku }}
|
{{ $item->category->name ?? 'N/A' }} | {{ number_format($item->current_stock, 2) }} {{ $item->unit->abbreviation ?? '' }} | {{ number_format($item->minimum_stock, 2) }} {{ $item->unit->abbreviation ?? '' }} | @if($item->current_stock == 0) Out of Stock @else Low Stock @endif |