47 lines
2.7 KiB
PHP
47 lines
2.7 KiB
PHP
<?php
|
|
$testimonials = getTestimonials(limit: 6, order: 'desc');
|
|
$visas = getGalleriesByCategory(limit: null, order: 'asc', category: 'visa-success');
|
|
?>
|
|
|
|
<?php $__env->startSection('content'); ?>
|
|
<?php echo $__env->make('client.rohini.pages.partials.breadcrumb', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
|
|
<?php if($page->children->count() > 0): ?>
|
|
<?php
|
|
$visapage = $page->children[0];
|
|
?>
|
|
<?php echo $__env->make('client.rohini.pages.partials.visa',[$visapage, $visas], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php endif; ?>
|
|
|
|
<h2 style="text-align:center; padding:40px; color:#dc0f18; font-size:40px"><?php echo e($page->short_description); ?></h2>
|
|
|
|
<!--Testimonials Page Start-->
|
|
<section class="testimonials-page">
|
|
<div class="container">
|
|
<div class="row">
|
|
<!--Testimonial Two Single Start-->
|
|
<?php $__currentLoopData = $testimonials; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $testimony): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<div class="col-xl-4 col-lg-6 col-md-6">
|
|
<div class="testimonial-two__single">
|
|
<div class="testimonial-two__img">
|
|
<img src="<?php echo e($testimony->image); ?>" style="height: 120px; width:120px; object-fit:cover;" alt="">
|
|
</div>
|
|
<div class="testimonial-two__shape-1">
|
|
<img src="rohini/assets/images/shapes/testimonial-two-shape-1.png" alt="">
|
|
</div>
|
|
<h3 class="testimonial-two__name"><a href="testimonials.html"><?php echo e($testimony->name); ?></a></h3>
|
|
<p class="testimonial-two__sub-title"><?php echo e($testimony->designation); ?></p>
|
|
<p class="testimonial-two__text"><?php echo $testimony->description; ?>
|
|
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
<!--Testimonial Two Single End-->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!--Testimonials Page End-->
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php echo $__env->make('client.rohini.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\xampp\htdocs\Consultancy-CCMS\resources\views/client/rohini/pages/success-template.blade.php ENDPATH**/ ?>
|