Unable to find template in Symfony 3 Unable to find template in Symfony 3 symfony symfony

Unable to find template in Symfony 3


According to the Symfony 3 Docs it's better to use slashes and to not use "Bundle" word.

So, we have as example:

return $this->render('@BloggerBlog/Default/index.html.twig');


try to change this:

return $this->render('CoreBundle:index.html.twig');

to this:

return $this->render('CoreBundle::index.html.twig');

The difference is to use :: instead of :


This helped me in my case:@Core/index.html.twig