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.
information-system/application/views/mobile_first/ah-feedback-list.php

19 lines
761 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><?php echo $feedback['content'] ?><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>