You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
801 B
PHP
22 lines
801 B
PHP
<div class="tour_h2_bg">
|
|
<h2 class="tour_h2_title">What Our Customers Said</h2>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<?php foreach ($feedback_list as $index => $feedback) {?>
|
|
<td>
|
|
<div class="tour_feedback">
|
|
<div class="feedback_content">
|
|
<strong><?php echo $feedback['title'] ?></strong>
|
|
<p><?php echo $feedback['content'] ?></p>
|
|
<a href="<?php echo $feedback['url'] ?>" target="_blank">More</a></div>
|
|
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
|
|
<img alt="" class="img-responsive" height="40" width="211" src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"></div>
|
|
</td>
|
|
<?php }?>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|