Hi People ! i have a project structure using modules and i want to use once of my controllers, from a module, to get a view (like a helper). i.e: ProductsViewController->getListView();
Which is the correct method to do this? basiclly i have problems returning the html from the view, i try to using differents options like $this->view->pick('list') , $this->view->render , etc ... but it doesn't work. The goal here is return the html to pass it to a volt view in another controller in the best way.
Thanks in advance.