관리-도구
편집 파일: 204d19ec72108efa9073dc26d82a1b20.php
<?php $__env->startSection('content'); ?> <style> .card-flip { perspective: 1000px; height: 400px; } .flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s; transform-style: preserve-3d; } .card-flip:hover .flip-inner { transform: rotateY(180deg); } .flip-front, .flip-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 10px; overflow: hidden; } .flip-front { background-size: cover; background-position: center; display: flex; align-items: flex-end; justify-content: center; padding: 20px; color: #fff; background-blend-mode: overlay; background-color: rgba(0, 0, 0, 0.4); } .flip-front h3 { margin: 0; background: rgba(0, 0, 0, 0.5); padding: 10px 15px; border-radius: 5px; font-size: 22px; text-align: center; } .flip-back { background: #111; color: white; transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; } </style> <!-- 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/room/1.webp.jpg" 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>Curtains</h1> <ul class="crumb"> <li><a href="/">Home</a></li> <li class="active">Curtains</li> </ul> </div> </div> </div> <div class="de-overlay"></div> </section> <section class="relative lines-deco"> <div class="container"> <div class="row g-4"> <?php $__currentLoopData = $productdetails; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-4 col-sm-6"> <div class="card-flip wow fadeInUp" data-wow-delay=".2s"> <div class="flip-inner"> <!-- Front --> <div class="flip-front" style="background-image: url('<?php echo e(asset('storage/' . $product->image)); ?>');"> <h3 style="color:white;"><?php echo e($product->title); ?></h3> </div> <!-- Back --> <div class="flip-back"> <p><?php echo e($product->description); ?></p> </div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <!-- Grommet Curtain end --> </div> </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\_leon\resources\views/frontend/productdetails.blade.php ENDPATH**/ ?>