View file File name : Add_aminity_list.php Content :<div class="container-fluid"> <div class="col-md-12 content-center"> <div class="card-plain"> <h2 class="text-center">Add Aminities</h2> <table id="myTable"> <thead> <tr> <th>id</th> <th>Properties</th> <th>Add Aminities</th> </tr> <?php foreach($test as $dt){ ?> <tr> <td><?=$dt->id?></td> <td><?=$dt->properties?></td> <td><?=$dt->aminities?></td> </tr> <?php } ?> </table> </div> </div> </div>