I usually did a FrontendBundle and BackendBundle but with Symfony 4 all is in src folder. Do I have to put all my controllers together (I do not think so) or create 2 folders (Controller and ControllerFront)?
For exemple: (file Symfony/config/routes/annotations.yaml)
controllers:
resource: ../../src/Controller/
type: annotation
prefix: /admin
controllers_front:
resource: ../../src/ControllerFront/
type: annotation
prefix: /
It's correct ? If not what is the best way ?
Sorry for my english. I try to improve it ;-)