У меня ошибка:
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException: не найден маршрут для "GET / blog" (из "http://localhost:8000/produits")
Я добавил аннотацию @Route в метод в моем контроллере (как я видел на другом сайте):
/**
* @Route("/blog", name="article.index")
* @return Response
* */
public function index():Response
{
return $this->render("blog/article.html.twig", [
"current_menu" => 'articles'
]);
}
Я пытался добавить методы = {"GET", "HEAD"} в @Routeно у меня такая же ошибка
Как мне решить эту проблему?