Stock Adjustments
Stock Adjustments
Manual inventory corrections and restocks
+ New Adjustment ← Current Stock
@if($adjustments->isEmpty())

📦

No adjustments yet

Create your first adjustment to track inventory changes.

+ Create Adjustment
@else
@foreach($adjustments as $adj) @php $qty = $adj->adjustment_quantity; @endphp @endforeach
Product Type Quantity Reason By Date
{{ $adj->product->name ?? 'Deleted Product' }} {{ ucfirst($adj->type) }} {{ $adj->type === 'subtract' ? '-' : '+' }}{{ abs($qty) }} {{ $adj->reason ?? '—' }} {{ $adj->user->name ?? 'System' }} {{ $adj->created_at->format('d M Y H:i') }}
@if($adjustments->hasPages())
{{ $adjustments->links() }}
@endif @endif