-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpossales.php
61 lines (59 loc) · 1.62 KB
/
possales.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
include("header.php")
?>
<!-- POS Sales Start -->
<h4 class="fw-bold mb-0 text-black-50 text-uppercase">POS (Sales)</h4>
<hr class="hr mb-3">
<div class="col-12">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>
<a href="#"><i class="fas fa-pen-to-square fa-lg"></i></a>
  |  
<a href="#"><i class="fa-solid fa-trash-can fa-lg"></i></a>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
<td>
<a href="#"><i class="fas fa-pen-to-square fa-lg"></i></a>
  |  
<a href="#"><i class="fa-solid fa-trash-can fa-lg"></i></a>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
<td>
<a href="#"><i class="fas fa-pen-to-square fa-lg"></i></a>
  |  
<a href="#"><i class="fa-solid fa-trash-can fa-lg"></i></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- POS Sales End -->
<?php
include("footer.php")
?>