Stuff
This commit is contained in:
parent
a76b8a05c5
commit
6b13595b96
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ class Traffic extends Authenticatable
|
||||||
];
|
];
|
||||||
|
|
||||||
public static function getLastDays(int $days = 7) {
|
public static function getLastDays(int $days = 7) {
|
||||||
$sql = "SELECT year, month, day, SUM(traffic) AS `traffic` FROM traffic WHERE tenant = ".session("current_tenant_id")."GROUP BY year, month, day ORDER BY year, month, day DESC LIMIT ".$days.";";
|
$sql = "SELECT year, month, day, SUM(traffic) AS `traffic` FROM traffic WHERE tenant = ".session("current_tenant_id")." GROUP BY year, month, day ORDER BY year, month, day DESC LIMIT ".$days.";";
|
||||||
$res = DB::select($sql);
|
$res = DB::select($sql);
|
||||||
|
|
||||||
$now = new \DateTime( $days." days ago", new \DateTimeZone('UTC'));
|
$now = new \DateTime( $days." days ago", new \DateTimeZone('UTC'));
|
||||||
|
|
Loading…
Reference in a new issue