관리-도구
편집 파일: 9839d343cd602bc88fc9be3edd728a046ebd207d.php
<?php $__env->startSection('content'); ?> <!-- Breadcrumbs --> <div class="breadcrumbs"> <div class="container"> <div class="row"> <div class="col-12"> <div class="bread-inner"> <ul class="bread-list"> <li><a href="<?php echo e(url('')); ?>"><?php echo e(_lang('Home')); ?><i class="ti-arrow-right"></i></a></li> <li class="active"><a href=""><?php echo e(_lang('Wish List')); ?></a></li> </ul> </div> </div> </div> </div> </div> <!-- End Breadcrumbs --> <!-- Wish List --> <div class="wish-list section"> <div class="container"> <div class="row"> <div class="col-12"> <table class="table wish-list-summery"> <thead> <tr class="main-hading"> <th><?php echo e(_lang('IMAGE')); ?></th> <th><?php echo e(_lang('PRODUCT')); ?></th> <th class="text-center"><?php echo e(_lang('ACTION')); ?></th> </tr> </thead> <tbody> <?php if(auth()->user()->wishlist->count() == 0): ?> <tr> <td colspan="3" class="text-center"><?php echo e(_lang('No product in wishlist!')); ?></td> </tr> <?php endif; ?> <?php $__currentLoopData = auth()->user()->wishlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="image" data-title="No"> <img src="<?php echo e(asset('storage/app/'. $product->image->file_path)); ?>" alt="#"> </td> <td class="product-des" data-title="Description"> <p class="product-name"> <a href="<?php echo e(url('product/'.$product->slug)); ?>"><?php echo e($product->translation->name); ?></a> </p> </td> <td class="text-center"> <a href="<?php echo e(url('add_to_cart/'.$product->id)); ?>" class="btn add_to_cart" data-type="<?php echo e($product->product_type); ?>"><?php echo e(_lang('Add to Cart')); ?></a> <a href="<?php echo e(url('remove_wishlist/'.$product->id)); ?>" class="btn remove_item"><?php echo e(_lang('Remove')); ?></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> <!--/ End Wish List --> <?php $__env->stopSection(); ?> <?php $__env->startSection('js-script'); ?> <script src="<?php echo e(asset('public/theme/default/js/cart.js?v=1.1')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('theme.saintsaccessories.websiteEcom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customamgdigital/saintsaccessories.custom.amgdigitalagency.com/resources/views/theme/saintsaccessories/wish_list.blade.php ENDPATH**/ ?>