관리-도구
편집 파일: 4380794957f373437fd1b52b5198cf961da352dc.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 d-none"> <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> <div class="container-fluid"> <div class="row testimonial-slider"> <?php $__currentLoopData = $testimonialContr->getTestimonials(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $testimonial): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($loop->iteration < 5): ?> <div class="col-lg-6"> <div class="high-level"> <!--<h5>High Level of Quality</h5>--> <p><?php echo $testimonial->content; ?></p> <div class="customer"> <?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 class="customer-txt"> <h4><?php echo $testimonial->title; ?></h4> <p><?php echo $testimonial->sub_title; ?></p> </div> </div> </div> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> <?php /**PATH /home/customdevdevopdi/findjobs.customdev.devopdigital.com/resources/views/theme/saintsaccessories/components/testimonials.blade.php ENDPATH**/ ?>