@extends('admin.layouts.master') @section('content')
@csrf
Update Stock

@php $productIds = old('product_id', []); $productQuantities = old('product_quantity', []); $productStocks = old('product_stock', []); $rowCount = count($productIds) > 0 ? count($productIds) : 1; @endphp @for ($i = 0; $i < $rowCount; $i++) @endfor
{{ __('#') }} {{ __('Product') }} {{ __('Stock') }} {{ __('Quantity') }} {{ __('Action') }}
{{ $i + 1 }}
Please enter a quantity
@if ($i == 0) @else @endif

@endsection @section('js') @endsection