/
home
/
sjslayjy
/
public_html
/
theweavenest
/
storage
/
framework
/
views
/
Upload File
HOME
<?php $__env->startSection('page_title', 'Search Results'); ?> <?php $__env->startSection('content'); ?> <section class="products section"> <div class="container"> <div class="row"> <?php if($products->isEmpty()): ?> <p>No products found for your search query.</p> <?php else: ?> <?php $__currentLoopData = $products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-md-4"> <div class="product-item"> <div class="product-thumb"> <?php if($product->is_promo): ?> <span class="badge">Sale</span> <?php endif; ?> <a href="<?php echo e(url('single_product/show', ['id' => $product->id])); ?>"> <img class="img-responsive" src="<?php echo e(asset('storage/media/' . $product->image)); ?>" alt="<?php echo e($product->name); ?>"> </a> <div class="preview-meta"> <ul> <li> <span data-toggle="modal" data-target="#product-modal-<?php echo e($product->id); ?>"> <i class="tf-ion-ios-search-strong"></i> </span> </li> <li> <a href="#!"><i class="tf-ion-ios-heart"></i></a> </li> <li> <a href="<?php echo e(url('single_product/show', ['id' => $product->id])); ?>"> <i class="tf-ion-android-cart"></i> </a> </li> </ul> </div> </div> <div class="product-content"> <h4><a href="<?php echo e(url('single_product/show', ['id' => $product->id])); ?>"><?php echo e($product->name); ?></a></h4> <?php if(isset($productAttributes[$product->id][0])): ?> <span class="aa-product-price">Rs <?php echo e($productAttributes[$product->id][0]->price); ?></span> <span class="aa-product-price"><del>Rs <?php echo e($productAttributes[$product->id][0]->mrp); ?></del></span> <?php endif; ?> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </div> </div> </section> <?php $__env->stopSection(); ?> <script> </script> <?php echo $__env->make('front.layout_alt', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\laravel_projecgts\ajay\resources\views/front/search.blade.php ENDPATH**/ ?>