When I try to call:
{{ render(controller(
'AppBundle:Default:_test'
)) }}
this one works, but if I create Admin folder and move my DefaultController there and call it like that:
{{ render(controller(
'AppBundle:Admin:Default:_test'
)) }}
this error shows up
("Unable to parse the controller name "AppBundle:Admin:Default:_test".")
What I'm missing? Thanks.