관리-도구
편집 파일: 744f288b7b76390d66d5a3ed1bdeddc9.php
<?php $__env->startSection('content'); ?> <!-- content begin --> <div class="no-bottom no-top" id="content"> <div id="top"></div> <section id="subheader" class="relative jarallax text-light"> <img src="images/background/product_bg.jpeg" class="jarallax-img" alt=""> <div class="container relative z-index-1000"> <div class="row justify-content-center"> <div class="col-lg-6 text-center"> <h1>Our Products</h1> <p class="lead mt-3">Curtain, Blinds, Bedding, Living, Dining & Mosquito Net</p> <ul class="crumb"> <li><a href="/">Home</a></li> <li class="active">Our Products</li> </ul> </div> </div> </div> <div class="de-overlay"></div> </section> <section class="relative lines-deco"> <div class="container"> <?php $__currentLoopData = $products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="row g-0 align-items-center justify-content-center mb-5"> <?php if($index % 2 == 0): ?> <!-- Image Left, Content Right --> <div class="col-lg-5"> <a href="<?php echo e(route('productdetails', ['id' => $product->id])); ?>" style="display: block;"> <div class="relative wow fadeInUp" data-wow-delay=".3s"> <div class="shape-mask-1 jarallax"> <img src="<?php echo e(asset('storage/' . $product->image)); ?>" class="jarallax-img" alt=""> </div> </div> </a> </div> <div class="col-lg-5"> <div class="ms-lg-5 wow scaleIn"> <a href="curtains.html" style="text-decoration: none; color: inherit;"> <h2 class="wow fadeInUp"><?php echo e($product->title); ?></h2> </a> <a href="curtains.html" style="text-decoration: none; color: inherit;"> <p><?php echo e($product->description); ?></p> </a> <a href="<?php echo e(route('productdetails', ['id' => $product->id])); ?>" class="btn-main" style="border: 1px solid #ab8965; background-color: white; color: black;">View more</a> </div> </div> <?php else: ?> <!-- Content Left, Image Right --> <div class="col-lg-5 order-lg-2"> <a href="<?php echo e(route('productdetails', ['id' => $product->id])); ?>" style="display: block;"> <div class="relative wow fadeInUp" data-wow-delay=".3s"> <div class="shape-mask-1 jarallax"> <img src="<?php echo e(asset('storage/' . $product->image)); ?>" class="jarallax-img" alt=""> </div> </div> </a> </div> <div class="col-lg-5 order-lg-1"> <div class="me-lg-5 wow scaleIn"> <a href="curtains.html" style="text-decoration: none; color: inherit;"> <h2 class="wow fadeInUp"><?php echo e($product->title); ?></h2> </a> <a href="curtains.html" style="text-decoration: none; color: inherit;"> <p><?php echo e($product->description); ?></p> </a> <a href="<?php echo e(route('productdetails', ['id' => $product->id])); ?>" class="btn-main" style="border: 1px solid #ab8965; background-color: white; color: black;">View more</a> </div> </div> <?php endif; ?> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </section> </div> <!-- content close --> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.apps', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\Users\D E L L\Downloads\zam\resources\views/frontend/product.blade.php ENDPATH**/ ?>