plantillas - renderizar una vista desde otro controlador, yii
yii2 ejemplo (1)
prueba esto
$this->render(''//foo/error'');
El controlador:
controllers
|-FooController.php
|-BarController.php
Las vistas:
view
|-foo|
| |-index.php
| |-error.php
|
|-bar|
|-index.php
¿Cómo renderizar la vista error.php con una acción del controlador de la barra? Yo he tratado:
$this->render(''foo/error''
Pero no funciona.