관리-도구
편집 파일: 41930b04373cf7dba2313fb63e8648df.php
<?php $__env->startSection('content'); ?> <div class="inner-banner inner-bg5"> <div class="container-fluid"> <div class="container-max"> <div class="inner-title"> <h2>Photo Gallery</h2> </div> </div> </div> </div> <style> .single-gallery { position: relative; overflow: hidden; width: 100%; height: 250px; /* adjust height as needed */ border-radius: 8px; } .single-gallery img { width: 100%; height: 100%; object-fit: cover; /* ensures the image fills the container nicely */ } </style> <div class="gallery-area pt-100 pb-70"> <div class="container"> <div class="section-title-two text-center"> <span class="section-span-bg2">GALLERY</span> <h2 class="margin-auto">Our Project<b class="section-color2"> Gallery</b></h2> </div> <div class="gallery-view pt-45"> <div class="row justify-content-center"> <?php $__currentLoopData = $gallery; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $gallerys): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-4 col-sm-6"> <div class="single-gallery"> <img src="<?php echo e(asset('storage/' . $gallerys->image)); ?>" alt="Images"> <a href="<?php echo e(asset('storage/' . $gallerys->image)); ?>" class="gallery-icon"> <i class='bx bx-plus'></i> </a> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.apps', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u539723576/domains/ictglobaltech.com/public_html/rivaanhomecare/resources/views/frontend/gallery.blade.php ENDPATH**/ ?>