-
Notifications
You must be signed in to change notification settings - Fork 3
/
main-admin.php
33 lines (31 loc) · 1.96 KB
/
main-admin.php
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
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<span class="fa fa-bell"> <strong>Bookings Due Today</strong></span>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>ID No.</th>
<th>FullName</th>
<th>Phone</th>
<th>Bus</th>
<th>Seat</th>
<th>Date</th>
<th>DepartureTime</th>
<th>Amount</th>
<th>DateBooked</th>
</tr>
</thead>
<tbody>
<?php duetoday("bookings");?>
</tbody>
</table>
<a href="http://localhost/busbooking/bookings_view.php?SortField=&SortDirection=&FilterAnd%5B1%5D=and&FilterField%5B1%5D=8&FilterOperator%5B1%5D=like&FilterValue%5B1%5D=<?php $today=date('m%/d%/Y'); echo $today;?>" class="btn btn-info btn-block fa fa-list">See All Due Today</a>
</div>
</div>
</div>
</div>
</div>