I am coming from a Zend Framework background, and the process for creating a page is:
- Create a controller
- Create an empty action
- Create a folder for the controller
- Create a file matching the name of the controller action and place it in the directory for the controller
When you access the application via http://host/controller/action the view file is automatically rendered.
Is it possible for me to do this within Symfony2 so that I do not have to create routing entries for each controller/action? and automatically render the twig templates for each action?
Thanks in advance