{{ __('Parts Usage Report') }}

{{ __('Parts Usage Report') }}

{{ __('Reports') }} › {{ __('Quantity and cost issued per part over the selected period.') }}

@include('reports.inventory._filters', ['showPart' => true])
{{ __('Quantity Used') }}
{{ number_format($totals['quantity']) }}
{{ __('Total Cost') }}
{{ number_format($totals['cost'], 2) }}
@if ($rows->isEmpty())
{{ __('No usage matches the selected filters.') }}
@else @foreach ($rows as $row) @endforeach
{{ __('Part') }} {{ __('Quantity Used') }} {{ __('Cost Used') }} {{ __('Issuances') }}
{{ $row['part']->name }} {{ $row['quantityUsed'] }} {{ number_format($row['costUsed'], 2) }} {{ $row['movementCount'] }}
@endif