Hi,
What I want to do is to have Controllers And Subcontrollers.
I use this structure: https://github.com/phalcon/mvc/tree/master/simple-subcontrollers
The problem for me it is that if in View folder if let's say in views->admin if I put there index.volt and because I have folder users->index.volt when I try to access localhost/myproject/admin I will have there "Admin index" but when I try to access localhost/myproject/admin/users I will have the same "Admin index" instead "Users Index". I need something like this:
localhost/myproject/admin = "Admin index view" localhost/myproject/admin/users = "Users index view"
Is this possible? And let's say in controllers/admin/DashboardController.php if I want to define an action Post then in views dashboard/post/index.volt I go localhost/myproject/dashboard/post here to be "Post Index View" or if I have another action in DashboardController let's say statsAction then to have in views dashboard/stats/index.volt -> DashboardController to be on admin folder in controllers forlder.
Is this possible?