| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/b2c.hellogtx.com/application/sites/atlas/index/ |
Upload File : |
<?php if (!empty($testimonial)) { ?>
<section class="testimonial cmn-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="title-main">
<h1 class="wow zoomIn" data-wow-duration="3s"> <?php if(trim($this->homeContentdata['testimonialTitle']!=="")){
echo $this->homeContentdata['testimonialTitle'];
}
?></h1>
</div>
<div class="subtitle"> <?php if(trim($this->homeContentdata['testimonialDescription']!=="")){
echo $this->homeContentdata['testimonialDescription'];
}
?></div>
</div>
</div>
<section id="testimonial">
<div class="">
<div class=" owl-carousel owl-theme testimonial-slider">
<?php
foreach ($testimonial as $key => $tvalue) {
$Image = ($tvalue['TripImage'] != '') ? explode(',', $tvalue['TripImage']) : array(0 => '');
$ImageUrl = $this->amazonaws.'img/'.$tvalue["AgencySysId"].'/feedback/image/'. $Image[0];
?>
<div class="item wow zoomIn" data-wow-duration="3s">
<div class="testimonial-box">
<div class="client-img-box">
<?php if (isset($Image[0]) && !empty($Image[0])) { ?>
<img loading="lazy" class="img-fluid client-img" src="<?php echo $ImageUrl; ?>" alt="client image" title="" />
<?php } else { ?>
<img loading="lazy" class="img-fluid client-img" src="<?php echo $baseUrl; ?>public/images/noimageother.jpg" alt="noother image" title="" />
<?php } ?>
</div>
<div class="clinetnme_right">
<div class="ratingbox mt-2">
<?php for ($i = 0; $i < $tvalue['ReviewStarValue']; $i++) { ?>
<i class="fa fa-star checked" style="color: #ffa500;"></i>
<?php } ?>
</div>
<div class="clearfix"></div>
<div class="client-sub text-white alpha"><?php echo $tvalue['ReviewTitle'];
if (strlen($tvalue['ReviewTitle']) > 200) { ?>
<a class="sendenquiry1" data-toggle="modal" data-target="#read_more">
<i class="sendenquiry1"></i>Read more</a>
<?php } ?>
</div>
</div>
<div class="clearfix"></div>
<p class="text-white"><?php echo $tvalue['Review']; ?></p>
<div class="clientname text-white"><?php echo $tvalue['Name']; ?></div>
</div>
</div>
<?php } ?>
</div>
</div>
</section>
</div>
</section>
<?php } ?>