Stock Movements

Track all stock additions, removals, and adjustments

@if($search || $warehouseFilter || $typeFilter || $productFilter || $dateFrom || $dateTo)
@endif
@forelse($movements as $movement) @empty @endforelse
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

@if($movements->hasPages())
{{ $movements->links() }}
@endif