This commit is contained in:
root
2019-12-22 23:54:33 +08:00
parent d9dcddd536
commit 56713946d7
3 changed files with 5 additions and 7 deletions

View File

@ -24,7 +24,9 @@ class AppController extends Controller
abort(500, '订阅计划不存在');
}
if ($user->expired_at > time()) {
$servers = Server::where('show', 1)->get();
$servers = Server::where('show', 1)
->orderBy('name')
->get();
foreach ($servers as $item) {
$groupId = json_decode($item['group_id']);
if (in_array($user->group_id, $groupId)) {