src/Controller/Produit/Service/AgenceController.php line 36

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Produit\Service;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class AgenceController extends AbstractController
  7. {
  8.     public function accueilcible(): Response
  9.     {
  10.         return $this->render('Theme/Users/Adminuser/Cible/accueilcible.html.twig',
  11.         array(
  12.         ));
  13.     }
  14.     public function accueilagence(): Response
  15.     {
  16.         return $this->render('Theme/Users/Adminuser/Agence/accueilagence.html.twig',
  17.         array(
  18.         ));
  19.     }
  20.     public function cabinet(): Response
  21.     {
  22.         return $this->render('Theme/Produit/Service/Service/cabinet.html.twig',
  23.         array(
  24.         ));
  25.     }
  26.       public function cabinets(): Response
  27.     {
  28.         return $this->render('Theme/Produit/Service/Service/cabinets.html.twig',
  29.         array(
  30.         ));
  31.     }
  32.     
  33.     public function expertise(): Response
  34.     {
  35.         return $this->render('Theme/Produit/Service/Service/expertise.html.twig',
  36.         array(
  37.         ));
  38.     }
  39. }