index.php 899 Bytes
<?php
    
    /**
     * @var                       $this yii\web\View
     * @var \common\models\Call[] $calls
     */
    
    $this->title = 'My Yii Application';
?>
<div class="site-index">
  
  <div class="jumbotron">
  
  </div>
  
  <div class="body-content">
    
    <div class="row">
      <table class="bordered">
        <thead>
          <tr>
            <th>Company</th>
            <th>Status</th>
            <th>Duration</th>
          </tr>
        </thead>
        <tbody>
            <?php
                foreach ($calls as $call) {
                    ?>
                  <tr>
                    <td><?= $call->company ?></td>
                    <td><?= $call->status ?></td>
                    <td><?= $call->duration ?></td>
                  </tr>
                    <?php
                }
            ?>
        </tbody>
      </table>
    </div>
  
  </div>
</div>