@php $rowCount = 0; @endphp @foreach ($productCodes as $product) @if ($rowCount % $columns === 0)
{{-- Open a new row --}} @endif
@php $product->status = 1; $product->save(); $qrCode = QrCode::format('png')->size(100)->generate($product->product_code); @endphp {{-- Add QR code to the HTML content --}} {{-- Add product code as text --}}


@php $rowCount++; @endphp {{-- If we reach the desired number of rows, close the row --}} @if ($rowCount % $columns === 0)
{{-- Close the previous row --}} @endif @endforeach {{-- Close any open row div --}} @if ($rowCount % $columns !== 0) @endif