Track all stock additions, removals, and adjustments
| Date | Product | Warehouse | Type | Previous | Quantity | New | Notes | By |
|---|---|---|---|---|---|---|---|---|
| {{ $movement->created_at->format('d M Y H:i') }} |
{{ $movement->product?->name ?? '-' }}
{{ $movement->product?->sku ?? '-' }}
|
{{ $movement->warehouse?->name ?? '-' }} | {{ $movement->type_label }} | {{ number_format($movement->previous_quantity ?? 0) }} | @if($movement->type === 'in') +@elseif($movement->type === 'out') -@endif{{ number_format($movement->quantity) }} | {{ number_format($movement->new_quantity ?? 0) }} | {{ $movement->notes ?? '-' }} | {{ $movement->creator?->name ?? 'System' }} |
|
No stock movements found Start by adding, removing, or adjusting stock |
||||||||