src/Controller/ServicesController.php line 53

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class ServicesController extends AbstractController
  7. {
  8.     
  9.     #[Route('/parodontologie'name'app_parodontologie')]
  10.     public function parodontologie(): Response
  11.     {
  12.         return $this->render('services/parodontologie.html.twig', [
  13.             'controller_name' => 'ServicesController',
  14.         ]);
  15.     }
  16.  
  17.     #[Route('/service'name'app_service')]
  18.     public function service(): Response
  19.     {
  20.         return $this->render('services/service.html.twig', [
  21.             'controller_name' => 'ServicesController',
  22.         ]);
  23.     }
  24.     #[Route('/urgencedentaire'name'app_urgencedentaire')]
  25.     public function urgencedentaire(): Response
  26.     {
  27.         return $this->render('services/urgencedentaire.html.twig', [
  28.             'controller_name' => 'ServicesController',
  29.         ]);
  30.     }
  31.  
  32.     #[Route('/implantologie'name'app_implantologie')]
  33.     public function implantologie(): Response
  34.     {
  35.         return $this->render('services/implantologie.html.twig', [
  36.             'controller_name' => 'ServicesController',
  37.         ]);
  38.     }
  39.     #[Route('/prothesedentaire'name'app_prothesedentaire')]
  40.     public function prothesedentaire (): Response
  41.     {
  42.         return $this->render('services/prothesedentaire.html.twig', [
  43.             'controller_name' => 'ServicesController',
  44.         ]);
  45.     }
  46.     #[Route('/endodontie'name'app_endodontie')]
  47.     public function endodontie (): Response
  48.     {
  49.         return $this->render('services/endodontie.html.twig', [
  50.             'controller_name' => 'ServicesController',
  51.         ]);
  52.     }
  53.     #[Route('/dentisterieesthetique'name'app_dentisterieesthetique')]
  54.     public function dentisterieesthetique (): Response
  55.     {
  56.         return $this->render('services/dentisterieesthetique.html.twig', [
  57.             'controller_name' => 'ServicesController',
  58.         ]);
  59.     }
  60.     
  61.     #[Route('/pedodontie'name'app_pedodontie')]
  62.     public function pedodontie (): Response
  63.     {
  64.         return $this->render('services/pedodontie.html.twig', [
  65.             'controller_name' => 'ServicesController',
  66.         ]);
  67.     }
  68.     #[Route('/chirurgiedentaire'name'app_chirurgiedentaire')]
  69.     public function chirurgiedentaire (): Response
  70.     {
  71.         return $this->render('services/chirurgiedentaire.html.twig', [
  72.             'controller_name' => 'ServicesController',
  73.         ]);
  74.     }
  75.     #[Route('/orthodontie'name'app_orthodontie')]
  76.     public function orthodontie (): Response
  77.     {
  78.         return $this->render('services/orthodontie.html.twig', [
  79.             'controller_name' => 'ServicesController',
  80.         ]);
  81.     }
  82.     #[Route('/laser'name'app_laser')]
  83.     public function laser (): Response
  84.     {
  85.         return $this->render('services/laser.html.twig', [
  86.             'controller_name' => 'ServicesController',
  87.         ]);
  88.     }
  89.     #[Route('/numerique'name'app_numerique')]
  90.     public function numerique (): Response
  91.     {
  92.         return $this->render('services/numerique.html.twig', [
  93.             'controller_name' => 'ServicesController',
  94.         ]);
  95.     }
  96.     #[Route('/pathologies'name'app_pathologies')]
  97.     public function pathologies (): Response
  98.     {
  99.         return $this->render('services/pathologies.html.twig', [
  100.             'controller_name' => 'ServicesController',
  101.         ]);
  102.     }
  103. }