src/Controller/NotreEntrepriseController.php line 12

Open in your IDE?
  1. <?php
  2. namespace  App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class NotreEntrepriseController extends AbstractController
  6. {
  7.     #[Route('notre-entreprise'name:"notreEntreprise")]
  8.     public function index()
  9.     {
  10.         return $this->render('pages/notreEntreprise.html.twig');
  11.     }
  12. }