Inventory Turnover

Analyze how quickly inventory is moving ({{ $days }} days period)

Total Inventory Value

{{ currency($totalInventoryValue) }}

Slow Moving

{{ $statusSummary['slow_moving'] }}

items need attention

Normal

{{ $statusSummary['normal'] }}

healthy turnover

Fast Moving

{{ $statusSummary['fast_moving'] }}

high demand items

Turnover by Item

@forelse($items as $item) @empty @endforelse
Item Category Stock Value COGS Turnover Days to Sell Status
{{ $item['name'] }} {{ $item['category'] }} {{ number_format($item['current_stock'], 2) }} {{ $item['unit'] }} {{ currency($item['inventory_value']) }} {{ currency($item['cogs']) }} {{ $item['turnover_ratio'] }}x {{ $item['days_to_sell'] >= 999 ? '∞' : number_format($item['days_to_sell'], 0) }} {{ ucfirst(str_replace('_', ' ', $item['status'])) }}
No inventory data available