ok
Direktori : /home2/selectio/www/innerstore/storage/framework/views/ |
Current File : /home2/selectio/www/innerstore/storage/framework/views/2e76b418e2fb3415d679395316078f7306883407.php |
<?php if(count($combinations) > 0): ?> <table class="table table-bordered physical_product_show"> <thead> <tr> <td class="text-center"> <label for="" class="title-color"><?php echo e(\App\CPU\translate('Variant')); ?></label> </td> <td class="text-center"> <label for="" class="title-color"><?php echo e(\App\CPU\translate('Variant Price')); ?></label> </td> <td class="text-center"> <label for="" class="title-color"><?php echo e(\App\CPU\translate('SKU')); ?></label> </td> <td class="text-center"> <label for="" class="title-color"><?php echo e(\App\CPU\translate('Quantity')); ?></label> </td> </tr> </thead> <tbody> <?php endif; ?> <?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> <input value="<?php echo e($combination['type']); ?>" name="type[]" class="d-none"> </td> <td> <input type="number" name="price_<?php echo e($combination['type']); ?>" value="<?php echo e(\App\CPU\Convert::default($combination['price'])); ?>" min="0" step="0.01" class="form-control" required> </td> <td> <input type="text" name="sku_<?php echo e($combination['type']); ?>" value="<?php echo e($combination['sku']); ?>" class="form-control" > </td> <td> <input type="number" onkeyup="update_qty()" name="qty_<?php echo e($combination['type']); ?>" value="<?php echo e($combination['qty']); ?>" min="1" max="100000" step="1" class="form-control" required> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php /**PATH /home2/auroraas/public_html/a1-textile/resources/views/admin-views/product/partials/_edit_sku_combinations.blade.php ENDPATH**/ ?>