Your IP : 216.73.216.79


Current Path : /var/www/html/ekursusv2/frontend/runtime/frontendpage/
Upload File :
Current File : /var/www/html/ekursusv2/frontend/runtime/frontendpage/188_1783563878047499300-content-454.php

<?php 
/*** CONTENT_ID-454***/
use backend\models\Contractor;

echo '<div class="container">';
echo '<h1>Senarai Kontraktor di Malaysia</h1>';

echo '<table>';
echo '<thead>

<tr>
<th>Nama Syarikat</th>
<th>Alamat</th>
<th>Nombor Telefon</th>
<th>Alamat Emel</th>
</tr>

</thead>';
echo '<tbody>';
$model = Contractor::find()->all();
if(!empty($model)){
    
    foreach ($model as $row){
        echo '<tr>';
        echo '<td>'.$row->name.'</td>';
         echo '<td>'.$row->address.'</td>';
          echo '<td>'.$row->tel.'</td>';
           echo '<td>'.$row->email.'</td>';
            echo '</tr>';
    }
}

echo '</tbody>';

echo '</table>';

echo '</div>';
?>