factory = $factory; $this->requestStack = $requestStack; } public function mainMenu(array $options) { $request = $this->requestStack->getCurrentRequest(); $menu = $this->factory->createItem('root', [ 'route' => 'homepage', ]); $menu->addChild('Home', [ 'route' => 'homepage', ]); $models = $menu->addChild('Models', [ 'route' => 'model_index', ]); $models->addChild('Colors', [ 'route' => 'color_index', ]); $menu->addChild('Sets', [ 'route' => 'set_index', ]); return $menu; } }