-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmanageOrders.php
36 lines (32 loc) · 962 Bytes
/
manageOrders.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
34
35
36
<?php require_once 'includes/header.php'; ?>
<style type="text/css">
.container{
width:100%;
}
</style>
<div class="row">
<div class="col-md-12">
<div class="panel panel-success">
<div class="panel-heading">Listing all Orders</div>
<div class="panel-body">
<table class="tables" id="manageOrdersTable" style="width:100%;">
<thead>
<tr>
<th>Order Id</th>
<th style="width:75px;">Order Date</th>
<th>Client Name</th>
<th>Contact</th>
<th>Product</th>
<th>No. of items</th>
<th>Amount</th>
<th>Payment status</th>
<th>Due amount</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="custom/js/orders.js"></script>
<?php require_once 'includes/footer.php'; ?>