{{ $part->category }}
{{ __('Append-only. Correct a mistake with an adjustment entry.') }}
{{ __('No stock movements recorded yet.') }}
| {{ __('Date') }} | {{ __('Type') }} | {{ __('Qty') }} | {{ __('Cost') }} | {{ __('Detail') }} | {{ __('Reference') }} | {{ __('By') }} |
|---|---|---|---|---|---|---|
| {{ $movement->date->format('M j, Y') }} | {{ $movement->type->label() }} | {{ $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 }}@if ($movement->mechanic) · {{ $movement->mechanic->name }}@endif @else — @endif | {{ $movement->reference ?: '—' }} | {{ $movement->recordedBy?->name ?: '—' }} |