| {{ __('Date') }} | {{ __('Product') }} | {{ __('Warehouse') }} | {{ __('Type') }} | {{ __('Qty') }} | {{ __('Before') }} | {{ __('After') }} | {{ __('By') }} |
|---|---|---|---|---|---|---|---|
| {{ $movement->created_at->format('Y-m-d H:i') }} | {{ $movement->product->name }} | {{ $movement->warehouse->name }} | {{ $movement->type->label() }} | {{ $movement->type->isInbound() ? '+' : '-' }}{{ number_format($movement->quantity) }} | {{ number_format($movement->quantity_before) }} | {{ number_format($movement->quantity_after) }} | {{ $movement->actor?->name ?? __('System') }} |
| {{ __('No stock movements found.') }} | |||||||