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