<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class MentionLegaleController extends AbstractController{ #[Route('/mention_legale', name: 'app_mention_legal')] public function mentionLegale() { return $this->render('mention_legale/index.html.twig'); }}