67 lines
2.9 KiB
PHP
67 lines
2.9 KiB
PHP
<?php if(!isset($visapage) && $page->children->count() > 5): ?>
|
|
<?php
|
|
$visapage = $page->children[5];
|
|
?>
|
|
<?php endif; ?>
|
|
<?php if(isset($visas)): ?>
|
|
<?php
|
|
$visaGalleries = $visas;
|
|
?>
|
|
<?php endif; ?>
|
|
<?php if(isset($visapage)): ?>
|
|
<!-- Project One Start -->
|
|
<section class="project-one section-bg section-pd">
|
|
<div class="container">
|
|
<div class="section-title text-center">
|
|
<h2 class="section-title__title"><?php echo e($visapage->short_description); ?></h2>
|
|
</div>
|
|
<div class="project-one__bottom">
|
|
<div class="project-one__carousel owl-carousel owl-theme thm-owl__carousel"
|
|
data-owl-options='{
|
|
"loop": true,
|
|
"autoplay": true,
|
|
"margin": 30,
|
|
"nav": false,
|
|
"dots": false,
|
|
"smartSpeed": 500,
|
|
"autoplayTimeout": 10000,
|
|
"navText": ["<span class=\"fas fa-long-arrow-alt-left\"></span>","<span class=\"fas fa-long-arrow-alt-right\"></span>"],
|
|
"responsive": {
|
|
"0": {
|
|
"items": 1
|
|
},
|
|
"768": {
|
|
"items": 1
|
|
},
|
|
"992": {
|
|
"items": 1
|
|
},
|
|
"1290": {
|
|
"items": 1
|
|
}
|
|
}
|
|
}'>
|
|
<!--Project One Single Start-->
|
|
|
|
<?php
|
|
$galleries = $visaGalleries->galleries;
|
|
?>
|
|
<?php $__currentLoopData = $galleries; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $visa): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<div class="item">
|
|
<div class="project-one__single">
|
|
<div class="project-one__img-box">
|
|
<div class="project-one__img"> <img src="<?php echo e($visa->images[0]); ?>" alt="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
|
|
<!--Project One Single End-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Project One End -->
|
|
<?php endif; ?>
|
|
<?php /**PATH /home/rohiniedu/public_html/resources/views/client/rohini/pages/partials/visa.blade.php ENDPATH**/ ?>
|