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

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

{{ __('Reports') }} › {{ __('Usage rolled up by category over the selected period.') }}

@include('reports.inventory._filters', ['showCategory' => 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
{{ __('Category') }} {{ __('Quantity Used') }} {{ __('Cost Used') }} {{ __('Distinct Parts') }}
{{ $row['category'] }} {{ $row['quantityUsed'] }} {{ number_format($row['costUsed'], 2) }} {{ $row['partCount'] }}
@endif