<?phpnamespace App\Controller\Views\Pages;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\HttpFoundation\RedirectResponse;class HomeController extends AbstractController{ /** * @Route("/", name="home") */ public function index(): Response { return $this->redirectToRoute('app_views_pages_recipes_by_model'); }}