{{ __('Reports') }} › {{ __('Every stock movement across the catalog for the selected period.') }}
| {{ __('Date') }} | {{ __('Type') }} | {{ __('Part') }} | {{ __('Qty') }} | {{ __('Cost') }} | {{ __('Detail') }} | {{ __('By') }} |
|---|---|---|---|---|---|---|
| {{ $movement->date->format('M j, Y') }} | {{ $movement->type->label() }} | {{ $movement->part->name }} | {{ $movement->quantity > 0 ? '+' : '' }}{{ $movement->quantity }} | {{ $movement->unit_cost !== null ? number_format((float) $movement->unit_cost, 2) : '—' }} | @if ($movement->supplier) {{ __('From') }} {{ $movement->supplier->name }} @elseif ($movement->vehicle) {{ __('To') }} {{ $movement->vehicle->plate }} @else — @endif | {{ $movement->recordedBy?->name ?: '—' }} |