관리-도구
편집 파일: a62ff5c39a2cd19a8a11c811ef9eef3a.php
<div class="variation_wrapper mt-3 physical_product_show show-for-physical-product"> <div class="outline-wrapper"> <div class="card rest-part bg-animate"> <div class="card-header d-flex justify-content-end align-items-center gap-3 border-0 pc-header-ai-btn shadow-none"> <div class="flex-grow-1"> <h2 class="mb-1"><?php echo e(translate('Product_Variation_Setup')); ?></h2> <p class="fs-12 mb-0"> <?php echo e(translate('Enable_and_manage_different_variations_of_a_product.')); ?> </p> </div> <?php if(getActiveAIProviderConfigCache()): ?> <button type="button" class="btn bg-white text-primary bg-transparent shadow-none border-0 opacity-1 generate_btn_wrapper p-0 variation_setup_auto_fill" id="variation_setup_auto_fill" data-route="<?php echo e(route('admin.product.variation-setup-auto-fill')); ?>" data-lang="en"> <div class="btn-svg-wrapper"> <img width="18" height="18" class="" src="<?php echo e(dynamicAsset(path: 'public/assets//back-end/img/ai/blink-right-small.svg')); ?>" alt=""> </div> <span class="ai-text-animation d-none" role="status"> <?php echo e(translate('Just_a_second')); ?> </span> <span class="btn-text"><?php echo e(translate('Generate')); ?></span> </button> <?php endif; ?> <label class="switcher"> <input type="checkbox" class="switcher_input product_variation_toggle" value="" id="" name=""> <span class="switcher_control"></span> </label> </div> <div class="card-body pt-0 product_variation_content d--none"> <div class="bg-section rounded-10 p-12 p-sm-20"> <div class="row gy-4 align-items-end"> <div class="col-md-6"> <div class="mb-3 d-flex align-items-center gap-2 justify-content-between"> <label for="colors" class="text-dark mb-0 d-flex gap-1"> <?php echo e(translate('colors')); ?> <span class="tooltip-icon" data-bs-toggle="tooltip" data-bs-placement="top" aria-label="" data-bs-title="need content"> <i class="fi fi-sr-info"></i> </span> </label> <label class="switcher"> <input type="checkbox" class="switcher_input" id="product-color-switcher" value="<?php echo e(old('colors_active')); ?>" name="colors_active"> <span class="switcher_control"></span> </label> </div> <select class="custom-select color-var-select" name="colors[]" multiple="multiple" id="colors-selector-input" disabled> <?php $__currentLoopData = $colors; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $color): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($color->code); ?>" data-color="<?php echo e($color->code); ?>"> <?php echo e($color['name']); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="col-md-6"> <label for="product-choice-attributes" class="form-label d-flex gap-1"> <?php echo e(translate('attributes')); ?> <span class="tooltip-icon" data-bs-toggle="tooltip" data-bs-placement="top" aria-label="" data-bs-title="need content"> <i class="fi fi-sr-info"></i> </span> </label> <select class="custom-select" name="choice_attributes[]" id="product-choice-attributes" multiple="multiple" data-placeholder="<?php echo e(translate('choose_attributes')); ?>"> <option></option> <?php $__currentLoopData = $attributes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $a): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($a['id']); ?>"> <?php echo e($a['name']); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="col-md-12 mt-2 mb-2"> <div class="row customer-choice-options-container my-0 gy-4 gy-2" id="customer-choice-options-container"></div> </div> </div> </div> <div class="form-group sku_combination py-3 mb-0" id="sku_combination"></div> <?php echo $__env->make('admin-views.product.add._color-wise-images', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?> </div> </div> </div> </div> <div class="variation_wrapper mt-3 show-for-digital-product"> <div class="outline-wrapper"> <div class="card rest-part bg-animate"> <div class="card-header d-flex justify-content-end align-items-center gap-3 border-0 pc-header-ai-btn shadow-none"> <div class="flex-grow-1"> <h2 class="mb-1"><?php echo e(translate('Product_Variation_Setup')); ?></h2> <p class="fs-12 mb-0"> <?php echo e(translate('Enable_and_manage_different_variations_of_a_product.')); ?> </p> </div> <?php if(getActiveAIProviderConfigCache()): ?> <button type="button" class="btn bg-white text-primary bg-transparent shadow-none border-0 opacity-1 generate_btn_wrapper p-0 variation_setup_auto_fill" id="variation_setup_auto_fill" data-route="<?php echo e(route('admin.product.variation-setup-auto-fill')); ?>" data-lang="en"> <div class="btn-svg-wrapper"> <img width="18" height="18" class="" src="<?php echo e(dynamicAsset(path: 'public/assets//back-end/img/ai/blink-right-small.svg')); ?>" alt=""> </div> <span class="ai-text-animation d-none" role="status"> <?php echo e(translate('Just_a_second')); ?> </span> <span class="btn-text"><?php echo e(translate('Generate')); ?></span> </button> <?php endif; ?> <label class="switcher"> <input type="checkbox" class="switcher_input product_variation_toggle" value="" id="" name=""> <span class="switcher_control"></span> </label> </div> <div class="card-body pt-0 product_variation_content d--none"> <div class="bg-section rounded-10 p-12 p-sm-20"> <div class="row gy-4" id="digital-product-type-choice-section"> <div class="col-12"> <div class="multi--select"> <label class="form-label"><?php echo e(translate('File_Type')); ?></label> <select class="custom-select" name="file-type" multiple id="digital-product-type-select"> <?php $__currentLoopData = $digitalProductFileTypes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $FileType): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($FileType); ?>"><?php echo e(translate($FileType)); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> </div> </div> </div> <div id="digital-product-variation-section"></div> </div> </div> </div> </div> <div id="digital-product-single-file-upload-section"></div> <?php /**PATH /home2/slnssare/public_html/resources/views/admin-views/product/add/_product-variation-setup.blade.php ENDPATH**/ ?>