<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class CertificatsController extends AbstractController{ #[Route('/certificats', name: 'certificats')] public function certificats(): Response { return $this->render('certificats/certificats.html.twig', [ 'controller_name' => 'CertificatsController', ]); }}