Symfony 3.4 Use view inside my bundle

The basic problem appears to be that in S3.4, twig template paths such as ‘ListerListerBundle:Default:index.html.twig’ are no longer supported. Replace the path in the controller with: ‘@ListerLister/Default/index.html.twig’ And all should be well. If you are ever not sure what the actual namespace prefix is then run: bin/console debug:twig to list them. S3.3 still works fine … Read more