View file File name : Property_image_list.php Content :<div class="container"> <div class="col-md-12 content-center"> <div class="card-plain"> <h2 class="text-center">MANAGE IMAGES</h2> <table class="table text-center"> <thead> <tr>id</tr> <tr>property_id</tr> <tr>image 1</tr> <tr>image 2</tr> <tr>image 3</tr> <tr>image 4</tr> <tr>image 5</tr> <tr>updated by</tr> </thead> <?php foreach($test as $dt){ ?> <tbody> <td><?=$dt->id?></td> <td><?=$dt->property_id?></td> <td><?=$dt->image_1?></td> <td><?=$dt->image_2?></td> <td><?=$dt->image_3?></td> <td><?=$dt->image_4?></td> <td><?=$dt->image_5?></td> <td><?=$dt->updated_by?></td> </tbody> <?php } ?> </table> </div> </div> </div>