<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class IndexController extends AbstractController{ /** * @Route("/", name="app_index") */ public function index(): Response { return $this->render('front_end/index.html'); }}