Hello it's my first time here, and I have some thing to ask:
Just an example
app
|-- controllers
|... |-- admin
|... |... |-- UsersController.php
|... |... `-- PostsController.php
|... |
|... |--- UsersController.php
|... |
|... `-- PostsController.php
|
`-- views
... |-- admin
... |... |-- users
... |... |.... |-- edit.volt
... |... |.... `-- delete.volt
... |... `-- posts
... |.............. |-- edit.volt
... |.............. `--delete.volt
... |-- users
... |... |-- edit.volt
... |... `-- delete.volt
... `-- posts
............. |-- edit.volt
............. `--delete.volt
I'm pretty new to all of this, but is this kind of thing possible? I know that I could use multi-modules to separate front end and back end stuff, but that's not what I really wanted here.
Please help.