Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
storage
/
framework
/
views
/
Editing: 7466071cb78392a8c2082ab30df49b896a29247c.php
<?php if(count($combinations) > 0): ?> <table class="table table-bordered"> <thead> <tr> <td class="text-center"> <label for="" class="control-label">Variant</label> </td> <td class="text-center"> <label for="" class="control-label">Variant Price</label> </td> <td class="text-center"> <label for="" class="control-label">Variant Stock</label> </td> </tr> </thead> <tbody> <?php $__currentLoopData = $combinations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $combination): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <label for="" class="control-label"><?php echo e($combination['type']); ?></label> </td> <td> <input type="number" name="price_<?php echo e($combination['type']); ?>" value="<?php echo e($combination['price']); ?>" min="0" step="0.01" class="form-control" required> </td> <td> <input type="number" name="stock_<?php echo e($combination['type']); ?>" value="<?php echo e($combination['stock']??0); ?>" min="0" max="1000000" class="form-control" required> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php endif; ?> <?php /**PATH /home2/meumer25/painelbistroemcasa.meumercado.app/resources/views/admin-views/product/partials/_edit-combinations.blade.php ENDPATH**/ ?>
Save
Cancel