관리-도구
편집 파일: 22b5ecff8da36bd2a0a23d0cad9ddafd.php
<?php if(count($combinations) > 0): ?> <div> <table class="table physical_product_show table-borderless"> <thead class="thead-light thead-50 text-capitalize"> <tr> <th class="text-start"> <label for="" class="control-label"> <?php echo e(translate('SL')); ?> </label> </th> <th class="text-start"> <label for="" class="control-label"> <?php echo e(translate('attribute_Variation')); ?> </label> </th> <th class="text-start"> <label for="" class="control-label"> <?php echo e(translate('variation_Wise_Price')); ?> (<?php echo e(getCurrencySymbol()); ?>) </label> </th> <th class="text-start"> <label for="" class="control-label"> <?php echo e(translate('SKU')); ?> </label> </th> <th class="text-start"> <label for="" class="control-label"> <?php echo e(translate('Variation_Wise_Stock')); ?> </label> </th> </tr> </thead> <tbody> <?php $serial = 1; ?> <?php $__currentLoopData = $combinations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $combination): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="text-start"> <?php echo e($serial++); ?> </td> <td> <label for="" class="control-label text-wrap max-w-250"><?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(usdToDefaultCurrency(amount: $combination['price'])); ?>" min="0" step="0.01" class="form-control min-w-max-content" required placeholder="<?php echo e(translate('ex').': 100'); ?>"> </td> <td> <input type="text" name="sku_<?php echo e($combination['type']); ?>" value="<?php echo e($combination['sku']); ?>" class="form-control min-w-max-content store-keeping-unit" required> </td> <td> <input type="number" name="qty_<?php echo e($combination['type']); ?>" value="<?php echo e($combination['qty']); ?>" min="0" max="100000" step="1" class="form-control min-w-max-content" placeholder="<?php echo e(translate('ex')); ?>: <?php echo e(translate('5')); ?>" required> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> <?php /**PATH /home2/slnssare/public_html/resources/views/admin-views/product/partials/_edit-sku-combinations.blade.php ENDPATH**/ ?>