관리-도구
편집 파일: 46e684ea9c69cec76b7ec4a1b29273f5.php
<div class="d-flex flex-column gap-10px"> <?php $__currentLoopData = $wishlists; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$wishlist): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php ($product = $wishlist->productFullInfo); ?> <?php if( $wishlist->productFullInfo): ?> <div class="wishlist-item" id="row_id<?php echo e($product->id); ?>"> <div class="wishlist-img position-relative"> <a href="<?php echo e(route('product',$product->slug)); ?>" class="d-block h-100 rounded"> <img class="__img-full" src="<?php echo e(getStorageImages(path: $product->thumbnail_full_url, type: 'product')); ?>" alt="<?php echo e(translate('wishlist')); ?>"> </a> <?php if(getProductPriceByType(product: $product, type: 'discount', result: 'value') > 0): ?> <span class="for-discount-value px-1 font-bold fs-13 direction-ltr"> -<?php echo e(getProductPriceByType(product: $product, type: 'discount', result: 'string')); ?> </span> <?php endif; ?> </div> <div class="wishlist-cont align-items-end align-items-sm-center"> <div class="wishlist-text"> <div class="font-name"> <a class="fs-12 font-semibold line-height-16" href="<?php echo e(route('product',$product['slug'])); ?>"><?php echo e($product['name']); ?></a> </div> <?php if($brand_setting && $product->product_type != 'digital' && $product->brand): ?> <span class="sellerName fs-12"> <?php echo e(translate('brand')); ?> : <a href="<?php echo e(route('brand-products', ['slug' => $product->brand['slug']])); ?>" class="text-base text-primary hover:underline"> <?php echo e($product->brand['name'] ?? ''); ?> </a> </span> <?php endif; ?> <div class=" mt-sm-1"> <span class="font-weight-bold amount text-dark price-range d-flex align-items-center gap-2"> <span class="flash-product-price text-dark fw-semibold"> <?php echo e(getProductPriceByType(product: $product, type: 'discounted_unit_price', result: 'string')); ?> </span> <?php if(getProductPriceByType(product: $product, type: 'discount', result: 'value') > 0): ?> <del class="category-single-product-price"> <?php echo e(webCurrencyConverter(amount: $product->unit_price)); ?> </del> <?php endif; ?> </span> </div> </div> <a href="javascript:" class="remove--icon function-remove-wishList" data-id="<?php echo e($product['id']); ?>"> <i class="fa fa-heart web-text-primary mt-1px"></i> </a> </div> </div> <?php else: ?> <span class="badge badge-danger"><?php echo e(translate('item_removed')); ?></span> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <?php if($wishlists->count()==0): ?> <div class="d-flex justify-content-center align-items-center h-100"> <div class="login-card w-100 border-0 shadow-none"> <div class="text-center py-3 text-capitalize"> <img src="<?php echo e(theme_asset(path: 'public/assets/front-end/img/icons/wishlist-empty-state.svg')); ?>" alt="" class="mb-4" width="70"> <h5 class="fs-14 text-muted"><?php echo e(translate('you_have_not_added_product_to_wishlist_yet')); ?>!</h5> <a href="<?php echo e(route('products')); ?>" class="text-capitalize btn btn--primary btn-sm font-weight-bolder mt-3"> <?php echo e(translate('explore_more')); ?> </a> </div> </div> </div> <?php endif; ?> <div class="card-footer border-0"><?php echo e($wishlists->links()); ?></div> <?php /**PATH /home2/slnssare/public_html/resources/themes/default/web-views/partials/_wish-list-data.blade.php ENDPATH**/ ?>