<?phpnamespace ParcBundle\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class HomeController extends AbstractController{ #[Route('', name: 'parc_home_index')] public function index() { return $this->render('@parcbundle/parcbundle/home/index.html.twig', [ ]); }}