[Solved] Render Parent Module View File

I’ve a Module and nested modules, in child module I’ve same view content for N childs… how can point controller/view file to parent /views/index file ?

ex.




public function actionIndex(){


return $parentModule->render('index');

}

thanks

easy solution ->


return $this->render('//moduleName/view');

:o