View file File name : Propertiesdeallist.php Content : <div class="container-fluid"> <div class="col-md-12 content-center"> <div class="card-plain"> <h2 class="text-center">MANAGE PROPERTIES</h2> <table id="myTable"> <thead> <tr> <th></th> <th>id</th> <th>Project Code</th> <th>Property Image</th> <th>Contact Number</th> <th>Contact Mail</th> <th>Lacality</th> <th>Station</th> <th>Area</th> <th>Property Type</th> <th>Per Sq Ft Price</th> <th>Description</th> <th>Drice</th> <th>Furnishing</th> <th>Available From</th> <th>Downpayment</th> <th>Aminities</th> <th>Near By</th> <th>Last Created</th> <th>Last Updated</th> <th>Updated By</th> </tr> </thead> <tbody> <?php foreach($test as $dt){ ?> <tr> <td> <a href="<?=base_url()?>Properties/delete_bestdeal?properties=<?=$dt->id ?>">Remove from best deal</a></td> <td><?=$dt->id?></td> <td><?=$dt->project_code?></td> <td><img src="<?=$dt->property_image?>" style="height:70px;width:70px;border-radius:20px;"/></td> <td><?=$dt->contact_number?></td> <td><?=$dt->contact_mail?></td> <td><?=$dt->lacality?></td> <td><?=$dt->station?></td> <td><?=$dt->area?></td> <td><?=$dt->property_type?></td> <td><?=$dt->per_sq_ft_price?></td> <td><?=$dt->description?></td> <td><?=$dt->price?></td> <td><?=$dt->furnishing?></td> <td><?=$dt->available_from?></td> <td><?=$dt->downpayment?></td> <td><?=$dt->aminities?></td> <td><?=$dt->nearby?></td> <td><?=$dt->last_created?></td> <td><?=$dt->last_updated?></td> <td><?=$dt->first_name?> <?=$dt->last_name?> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div>