list.php
747 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
<table class="table table-hover" id="realops-flight-schedule">
<thead>
<tr>
<th>Flight</th>
<th>Type</th>
<th>Origin</th>
<th>STD</th>
<th>Destination</th>
<th>STA</th>
<th>Booked by</th>
</tr>
</thead>
<tbody>
<?php
foreach ($flights as $flight) { ?>
<tr>
<td><?=$flight->acid?></td>
<td><?=$flight->type?></td>
<td><?=$flight->adep?></td>
<td><?=date('H:i', strtotime($flight->std))?></td>
<td><?=$flight->ades?></td>
<td><?=date('H:i', strtotime($flight->sta))?></td>
<td>
<?php
if ($flight->user) { ?>
<?=$flight->user->name?>
<?php
} else { ?>
Available
<?php
} ?>
</td>
</tr>
<?php
} ?>
</tbody>
</table>