@push('title') Price Adjustments @endpush
Price Adjustments
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 Cost Price (LKR) Retail Price (LKR) Wholesale Price (LKR) Stock
{{ $product->name }} - {{ $product->code }}
{{ $pv->variation_id ? ($pv->variationType->name ?? 'N/A') : 'Default' }} {{ $batch->warehouse->name ?? 'N/A' }} {{ $batch->batch_no }} {{ $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 prices.

@endif