From 5ad5a633a932388026e857945bec2f89885ff8d5 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Oct 2023 03:14:27 +0900 Subject: [PATCH] =?UTF-8?q?=E6=98=A8=E6=97=A5=E6=B5=81=E9=87=8F=E6=8E=92?= =?UTF-8?q?=E8=A1=8C=E5=A2=9E=E5=8A=A0hy=E8=8A=82=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/V1/Admin/StatController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/V1/Admin/StatController.php b/app/Http/Controllers/V1/Admin/StatController.php index ab841b14..2adf16a0 100644 --- a/app/Http/Controllers/V1/Admin/StatController.php +++ b/app/Http/Controllers/V1/Admin/StatController.php @@ -5,6 +5,7 @@ namespace App\Http\Controllers\V1\Admin; use App\Http\Controllers\Controller; use App\Models\CommissionLog; use App\Models\Order; +use App\Models\ServerHyteria; use App\Models\ServerShadowsocks; use App\Models\ServerTrojan; use App\Models\ServerVmess; @@ -101,7 +102,8 @@ class StatController extends Controller 'v2ray' => ServerVmess::where('parent_id', null)->get()->toArray(), 'trojan' => ServerTrojan::where('parent_id', null)->get()->toArray(), 'vmess' => ServerVmess::where('parent_id', null)->get()->toArray(), - 'vless' => ServerVless::where('parent_id', null)->get()->toArray() + 'vless' => ServerVless::where('parent_id', null)->get()->toArray(), + 'hysteria'=> ServerHysteria::where('parent_id', null)->get()->toArray() ]; $startAt = strtotime('-1 day', strtotime(date('Y-m-d'))); $endAt = strtotime(date('Y-m-d'));