관리-도구
편집 파일: 4dd02919f34ebca2bb50bc37cc55d736.php
<?php if($orderSuccessIds): ?> <?php $isPlural = count($orderSuccessIds) > 1; $orderText = $isPlural ? translate('Order IDs') : translate('Order ID'); ?> <div class="modal fade" id="order_successfully" aria-labelledby="order_successfully" tabindex="-1" aria-hidden="true"> <div class="modal-dialog modal--md modal-dialog-centered"> <div class="modal-content"> <?php if(!auth('customer')->check()): ?> <?php if(count($orderSuccessIds) > 1): ?> <div class="modal-body rtl"> <div class="d-flex justify-content-end pb-2"> <button class="close close-quick-view-modal ps-2 pe-1 z-index-99" type="button" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="text-center px-sm-3 pb-2 pt-4 mt-xl-1"> <div class="mb-20"> <img width="56" height="56" class="" src="<?php echo e(theme_asset(path: "public/assets/front-end/img/icons/checked-circle.png")); ?>" alt=""> </div> <?php if(isset($isNewCustomerInSession) && $isNewCustomerInSession): ?> <h6 class="mb-3 fs-18 fw-semibold"><?php echo e(translate('Order_placed_&_Account_Created_Successfully')); ?>!</h6> <?php else: ?> <h6 class="mb-3 fs-18 fw-semibold"><?php echo e(translate('Thank You for Your Purchase!')); ?></h6> <?php endif; ?> <?php if(isset($isNewCustomerInSession) && $isNewCustomerInSession): ?> <p class="fs-14 title-semidark mb-1"> <?php echo e(translate('Your_Order_Has_been_placed_successfully,_and_your_account_has_been_created_using_your_information')); ?> </p> <p class="fs-14 title-semidark mb-30"> <?php echo e(translate('We_have_emailed_your_order_details_for_your_reference.')); ?> <?php echo e(translate('You_can_now_log_in_anytime_to_track_your_order_and_manage_your_purchase_easily.')); ?> </p> <?php else: ?> <p class="fs-14 title-semidark mb-1"> <?php echo e(translate('We have received your order and will process it shortly.')); ?> </p> <p class="fs-14 title-semidark mb-30"> <?php echo e(translate('You can track your order at any time using your order details.')); ?> <?php echo e(translate('We have also emailed a copy of your order confirmation for your reference.')); ?> </p> <?php endif; ?> <div class="table-responsive overflow-x-auto border rounded-10 mb-20"> <table class="table table-borderless align-middle text-dark text-nowrap tr-border-bottom border--dashed"> <thead class="bg-light"> <tr> <th class="text-start fw-semibold"><?php echo e(translate('Orders')); ?> (<?php echo e(count($orderSuccessIds)); ?>)</th> <th class="text-center fw-semibold"><?php echo e(translate('Invoice')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $orderSuccessIds; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $orderId): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <div class="d-flex gap-2 align-items-center lh-1 order-item"> <span><?php echo e(translate('Order_ID')); ?> #<span class="order-id-text"><?php echo e($orderId); ?></span></span> <a href="javascript:" class="text-primary copy-order-id"> <i class="fi fi-rr-copy lh-1"></i> </a> </div> </td> <td> <div class="d-flex align-items-center justify-content-center"> <a target="_blank" href="<?php echo e(route('generate-invoice',[$orderId])); ?>" class="btn btn--primary btn-circle p-0 fs-10" style="--size: 20px;"> <i class="fi fi-rr-download"></i> </a> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> <?php else: ?> <div class="modal-body rtl"> <div class="d-flex justify-content-end pb-2"> <button class="close close-quick-view-modal ps-2 pe-1 z-index-99" type="button" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="text-center px-sm-3 pb-2 pt-4 mt-xl-1"> <div class="mb-20"> <img width="56" height="56" class="" src="<?php echo e(theme_asset(path: "public/assets/front-end/img/icons/checked-circle.png")); ?>" alt=""> </div> <?php if(isset($isNewCustomerInSession) && $isNewCustomerInSession): ?> <h6 class="mb-3 fs-18 fw-semibold"><?php echo e(translate('Order_placed_&_Account_Created_Successfully')); ?>!</h6> <?php else: ?> <h6 class="mb-3 fs-18 fw-semibold"><?php echo e(translate('Thank You for Your Purchase!')); ?></h6> <?php endif; ?> <?php if(isset($isNewCustomerInSession) && $isNewCustomerInSession): ?> <p class="fs-14 title-semidark mb-1"> <?php echo e(translate('Your_Order_Has_been_placed_successfully,_and_your_account_has_been_created_using_your_information')); ?> </p> <p class="fs-14 title-semidark mb-30"> <?php echo e(translate('We_have_emailed_your_order_details_for_your_reference.')); ?> <?php echo e(translate('You_can_now_log_in_anytime_to_track_your_order_and_manage_your_purchase_easily.')); ?> </p> <?php else: ?> <p class="fs-14 title-semidark mb-1"> <?php echo e(translate('We have received your order and will process it shortly.')); ?> </p> <p class="fs-14 title-semidark mb-30"> <?php echo e(translate('You can track your order at any time using your order details.')); ?> <?php echo e(translate('We have also emailed a copy of your order confirmation for your reference.')); ?> </p> <?php endif; ?> <div class="mb-20 max-w-400 mx-auto d-flex align-items-center justify-content-between gap-2 border-dash-custom rounded-pill py-1 px-1"> <div class="fs-14 pl-3 order-item"><?php echo e(translate('Order_ID')); ?> #<span class="order-id-text"><?php echo e($orderSuccessIds[0]); ?></span></div> <button class="btn pt-1 pb-2 btn--primary font-bold px-3 rounded-pill font-weight-normal copy-order-id"> <?php echo e(translate('Copy')); ?> </button> </div> <?php if(isset($orderSuccessIds[0])): ?> <div class="d-flex flex-wrap gap-4 justify-content-center"> <a target="_blank" href="<?php echo e(route('generate-invoice',[$orderSuccessIds[0]])); ?>" type="button" class="btn w-fit-content web-text-primary p-0 fs-14 font-normal d-flex align-items-center gap-2 justify-content-center"> <i class="fi fi-rr-down-to-line top-02"></i> <?php echo e(translate('Download_Invoice')); ?> </a> </div> <?php endif; ?> </div> </div> <?php endif; ?> <?php endif; ?> </div> </div> </div> <?php endif; ?> <?php /**PATH /home2/slnssare/public_html/resources/themes/default/web-views/partials/_order-success-modal.blade.php ENDPATH**/ ?>