I have an typical MVC app.
I have an IndexController. I use $this->view->pick('index/index') to render my index.volt -> /view-dir/index/index.vol
I also have a LoginController. I again use $this->view->pick('login/index') to render my index.vot from /view-dir/login/index.volt.
Problem is every time i visit /login, Phalcon renders /login/index but also calls index/index behind the scenes. I see errors complaining that all the {{ }} tags inside index/index are not set.
Why is this happening??? index/index is not part of the view hierarchy on the views doc page.
Also, I have another part of the app where this is working properly.
Please help!