-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
executable file
·123 lines (119 loc) · 5.43 KB
/
dashboard.php
File metadata and controls
executable file
·123 lines (119 loc) · 5.43 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
require_once dirname(__FILE__).'/include/header.php';
require_once dirname(__FILE__).'/include/api.php';
require_once dirname(__FILE__).'/include/navbar.php';
?>
<div class="socialcodia">
<div class="row">
<div class="col l2 m4 s12">
<div class="card hoverable">
<div class="card-content blue lighten-1 white-text">
<h3 style="font-weight: bold;" id="productsCount">0</h3>
<p style="font-weight: bold; font-size:20px;">Products</p>
</div>
<div class="card-action blue darken-2 center">
<a class="white-text" href="products">More<i class="material-icons tiny">open_in_new</i></a>
</div>
</div>
</div>
<div class="col l2 m4 s12">
<div class="card hoverable">
<div class="card-content blue lighten-1 white-text">
<h3 style="font-weight: bold;" id="salesCount">0</h3>
<p style="font-weight: bold; font-size:20px;">Todays Sale</p>
</div>
<div class="card-action blue darken-2 center">
<a class="white-text" href="salestoday">More<i class="material-icons tiny">open_in_new</i></a>
</div>
</div>
</div>
<div class="col l2 m4 s12">
<div class="card hoverable">
<div class="card-content blue lighten-1 white-text">
<h3 style="font-weight: bold;" id="brandsCount">0</h3>
<p style="font-weight: bold; font-size:20px;">Brands</p>
</div>
<div class="card-action blue darken-2 center">
<a class="white-text" href="products">More<i class="material-icons tiny">open_in_new</i></a>
</div>
</div>
</div>
<div class="col l2 m4 s12">
<div class="card hoverable">
<div class="card-content blue lighten-1 white-text">
<h3 style="font-weight: bold;" id="noticesCount">0</h3>
<p style="font-weight: bold; font-size:20px;">Notice</p>
</div>
<div class="card-action blue darken-2 center">
<a class="white-text" href="productsnotice">More<i class="material-icons tiny">open_in_new</i></a>
</div>
</div>
</div>
<div class="col l2 m4 s12">
<div class="card hoverable">
<div class="card-content blue lighten-1 white-text">
<h3 style="font-weight: bold;" id="expiringsCount">0</h3>
<p style="font-weight: bold; font-size:20px;">Expiring</p>
</div>
<div class="card-action blue darken-2 center">
<a class="white-text" href="expiringproducts">More<i class="material-icons tiny">open_in_new</i></a>
</div>
</div>
</div>
<div class="col l2 m4 s12">
<div class="card hoverable">
<div class="card-content blue lighten-1 white-text">
<h3 style="font-weight: bold;" id="expiredsCount">0</h3>
<p style="font-weight: bold; font-size:20px;">Expired</p>
</div>
<div class="card-action blue darken-2 center">
<a class="white-text" href="expiredproducts">More<i class="material-icons tiny">open_in_new</i></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col l6 m6 s12">
<div class="card z-depth-0">
<canvas id="chatSalesRecordOfDays" width="400" height="400"></canvas>
</div>
</div>
<div class="col l6 m6 s12">
<div class="card z-depth-0">
<canvas id="chatSalesRecordOfMonths" width="400" height="400"></canvas>
</div>
</div>
<div class="col l6 m6 s12">
<div class="card z-depth-0">
<canvas id="chartTopProductsRecord" width="400" height="400"></canvas>
</div>
</div>
<div class="col l6 m6 s12">
<div class="card z-depth-0">
<canvas id="chartTopProductsRecordYearly" width="400" height="400"></canvas>
</div>
</div>
<div class="col l4 m4 s12">
<div class="card z-depth-0">
<canvas id="chartTopTenSellersMonthly" width="400" height="400"></canvas>
</div>
</div>
<div class="col l4 m4 s12">
<div class="card z-depth-0">
<canvas id="chartTopTenSellersYearly" width="400" height="400"></canvas>
</div>
</div>
<div class="col l4 m4 s12">
<div class="card z-depth-0">
<canvas id="chatSellerSalesRecordOfMonths" width="400" height="400"></canvas>
</div>
</div>
<div class="col l12 m12 s12">
<div class="card z-depth-0">
<img src="src/img/fmo.jpg" class="responsive-img">
</div>
</div>
</div>
</div>
<?php require_once dirname(__FILE__).'/include/sidenav.php'; ?>
<?php require_once dirname(__FILE__).'/include/footer.php'; ?>