관리-도구
편집 파일: 8d8b22eb661f49365e027130f79f747b.php
<?php if(isset($product)): ?> <?php ($overallRating = getOverallRating($product?->reviews)); ?> <div class="cxp cxr" data-cat="<?php echo e($product->category_id ?? ''); ?>" onclick="window.location.href='<?php echo e(route('product', $product->slug)); ?>'"> <div class="cxp__frame"> <img loading="lazy" src="<?php echo e(getStorageImages(path: $product->thumbnail_full_url, type: 'product')); ?>" alt="<?php echo e($product['name']); ?>"> <span class="cxp__no"><?php echo e(sprintf('%02d', ($loop->iteration ?? 1))); ?></span> <?php if(getProductPriceByType(product: $product, type: 'discount', result: 'value') > 0): ?> <span class="cxp__tag">−<?php echo e(getProductPriceByType(product: $product, type: 'discount', result: 'string')); ?></span> <?php endif; ?> <?php if(isset($product->product_type) && $product->product_type == 'physical' && $product->current_stock <= 0): ?> <span class="cxp__tag" style="background:var(--c-taupe);">Sold Out</span> <?php endif; ?> <div class="cxp__veil" aria-hidden="true"></div> <div class="cxp__act"> <a class="stopPropagation action-product-quick-view" href="javascript:" data-product-id="<?php echo e($product->id); ?>" onclick="event.stopPropagation();">Quick View</a> <a href="<?php echo e(route('product', $product->slug)); ?>" onclick="event.stopPropagation();">Details</a> </div> </div> <div class="cxp__meta"> <a class="cxp__name" href="<?php echo e(route('product', $product->slug)); ?>" onclick="event.stopPropagation();"><?php echo e(Str::limit($product['name'], 56)); ?></a> <div class="cxp__rule"></div> <div> <span class="cxp__price"><?php echo e(getProductPriceByType(product: $product, type: 'discounted_unit_price', result: 'string')); ?></span> <?php if(getProductPriceByType(product: $product, type: 'discount', result: 'value') > 0): ?> <span class="cxp__was"><?php echo e(webCurrencyConverter(amount: $product->unit_price)); ?></span> <?php endif; ?> </div> <?php if($overallRating[0] != 0): ?> <div class="cxp__stars"> <?php for($i=1;$i<=5;$i++): ?><i class="tio-star<?php echo e($i > (int)$overallRating[0] ? '-outlined off' : ' on'); ?>"></i><?php endfor; ?> </div> <?php endif; ?> </div> </div> <?php endif; ?> <?php /**PATH /home2/slnssare/public_html/resources/themes/default/web-views/partials/_feature-product.blade.php ENDPATH**/ ?>