관리-도구
편집 파일: 310bca4b44d94e0cf2d09b1fbf6ae65c20551c6f.php
<?php use App\Http\Controllers\TestimonialsController; $testimonialContr = new TestimonialsController(); ?> <style> .themeBtn--outline-dark { color: #fff; border-color: #fff; background: linear-gradient( to right, var(--gradient-stop-1), #FB3D6B ); } </style> <!-- Testimonials frontend--> <div class="container py-5 my-5"> <div class="row justify-content-center"> <div class="col-12 mb-5 wow zoomIn"> <div class="section-content text-center"> <h2 class="heading"><?php echo get_trans_option('home_sec6_heading1'); ?></h2> </div> </div> <div class="col-12 wow zoomInUp"> <div class="row test-slide"> <?php $__currentLoopData = $testimonialContr->getTestimonials(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $testimonial): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($loop->iteration < 5): ?> <div class="col-12"> <div class="testimonial-card"> <div class="testimonial-card__top"> <div class="testimonial-card__img"> <?php $__currentLoopData = json_decode($testimonial->image); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $img): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($loop->iteration == 1): ?> <img src="<?php echo e(asset('/public/theme/default/images/'.$img) ?? asset('/public/theme/saintsaccessories/images/testimonial-img-1.png')); ?>" alt="image" class="imgFluid"> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> <div class="testimonial-card__desc"><?php echo $testimonial->content; ?></div> <p class="text-center"><b>- <?php echo $testimonial->title; ?></b></p> <div class="themeBtn-group justify-content-center"> <a href="/reviews" class="themeBtn themeBtn--rounded themeBtn--outline themeBtn--outline-dark">View All</a> </div> </div> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> <?php /**PATH /home/customamgdigital/saintsaccessories.custom.amgdigitalagency.com/resources/views/theme/saintsaccessories/components/testimonials.blade.php ENDPATH**/ ?>