@push('title') Stock Adjustments @endpush

Stock Adjustments

Note: This feature is only for stock adjustments, If you need to add a new stock please use the Purchase Order and GRN flow.

Reset
@if(request('brand_id') && $products->count() > 0)
@csrf
@foreach($products as $product) @foreach($product->variations as $pv) @foreach($pv->batches as $batch) @endforeach @endforeach @endforeach
Product & Variation Warehouse Batch No Initial Stock Current Stock New Stock Level
{{ $product->name }} - {{ $product->code }}
{{ $pv->variation_id ? ($pv->variationType->name ?? 'N/A') : 'Default' }} {{ $batch->warehouse->name ?? 'N/A' }} {{ $batch->batch_no }} {{ $batch->initial_stock }} {{ $batch->current_stock }}
{{ $products->withQueryString()->links() }}
@elseif(request('brand_id'))
No products found for the selected brand.
@else

Please select a brand to start adjusting stock levels.

@endif