menuService = new MenuService(); } /** * @throws \Exception */ public function init(): void { $this->menuService->createItem([ "label" => "Меню", "url" => "/admin/settings/menu", "slug" => "menu", "parent_slug" => "settings" ]); } public function deactivate(): void { $this->menuService->removeItemBySlug("menu"); } }