{{ __('Inventory Valuation Report') }}

{{ __('Inventory Valuation Report') }}

{{ __('Reports') }} › {{ __('Current on-hand value of your parts catalog.') }}

@include('reports.inventory._filters', ['showDates' => false, 'showSupplier' => true, 'showCategory' => true])
{{ __('Total Stock Units') }}
{{ number_format($totals['stock']) }}
{{ __('Total Value') }}
{{ number_format($totals['value'], 2) }}
@if ($rows->isEmpty())
{{ __('No parts match the selected filters.') }}
@else @foreach ($rows as $row) @endforeach
{{ __('Part') }} {{ __('Category') }} {{ __('Supplier') }} {{ __('Stock') }} {{ __('Unit Cost') }} {{ __('Value') }}
{{ $row['part']->name }} {{ $row['part']->category ?: '—' }} {{ $row['part']->supplier?->name ?: '—' }} {{ $row['stock'] }} {{ number_format($row['unitCost'], 2) }} {{ number_format($row['value'], 2) }}
@endif