feat: group admin sidebar items into single Administration page with action cards

This commit is contained in:
2026-06-14 09:39:33 -04:00
parent 36b0d8dfd9
commit e6017b80da
4 changed files with 46 additions and 37 deletions

View File

@@ -37,6 +37,13 @@ class AdminController
}
}
public function index(): void
{
$this->view->display('admin.index', [
'title' => 'Administration - ServerManager',
]);
}
public function users(): void
{
$this->requireSuperAdmin();