@extends('layouts.admin-simple') @section('title', 'Inventory Aging Report') @section('breadcrumb')
Analyze inventory based on age and identify slow-moving items
| Item | Category | Current Stock | Age (Days) | Last Transaction | Value | Age Category | Actions |
|---|---|---|---|---|---|---|---|
|
{{ substr($item['item_name'] ?? 'U', 0, 1) }}
{{ $item['item_name'] ?? 'Unknown Item' }}
{{ $item['item_code'] ?? 'No Code' }}
|
@if($item['category'] ?? null)
category
{{ $item['category'] }}
@else
-
@endif
|
{{ number_format($item['current_stock'] ?? 0, 2) }}
units
|
{{ $item['age_days'] ?? 0 }} days |
{{ $item['last_transaction'] ?? 'N/A' }}
|
{{ number_format($item['value'] ?? 0, 2) }}
|
{{ $agingCategory }} |
@can('warehouse.inventory.adjust')
@endcan
|
| Total Items: | {{ number_format(collect($agingInventory)->sum('value'), 2) }} | {{ collect($agingInventory)->count() }} items | |||||
All inventory items are within the acceptable age range of {{ $days }} days.
inventory View Current Inventory