index.php
899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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>