mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update: fix get server last rank
This commit is contained in:
		| @@ -94,7 +94,8 @@ class StatController extends Controller | ||||
|             'vmess' => ServerV2ray::where('parent_id', null)->get()->toArray(), | ||||
|             'trojan' => ServerTrojan::where('parent_id', null)->get()->toArray() | ||||
|         ]; | ||||
|         $timestamp = strtotime('-1 day', strtotime(date('Y-m-d'))); | ||||
|         $startAt = strtotime('-1 day', strtotime(date('Y-m-d'))); | ||||
|         $endAt = strtotime(date('Y-m-d')); | ||||
|         $statistics = StatServer::select([ | ||||
|                 'server_id', | ||||
|                 'server_type', | ||||
| @@ -102,7 +103,8 @@ class StatController extends Controller | ||||
|                 'd', | ||||
|                 DB::raw('(u+d) as total') | ||||
|             ]) | ||||
|             ->where('record_at', '>=', $timestamp) | ||||
|             ->where('record_at', '>=', $startAt) | ||||
|             ->where('record_at', '<', $endAt) | ||||
|             ->where('record_type', 'd') | ||||
|             ->limit(10) | ||||
|             ->orderBy('total', 'DESC') | ||||
|   | ||||
		Reference in New Issue
	
	Block a user