src/Controller/CompaniesController.php line 15

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 CompaniesController extends AbstractController
  7. {
  8.     /**
  9.      * Présentation générale – Entreprises & Enseignes
  10.      */
  11.     #[Route('/entreprises'name'companies')]
  12.     public function companies(): Response
  13.     {
  14.         return $this->render('companies/companies.html.twig');
  15.     }
  16.     /**
  17.      * Recrutement
  18.      */
  19.     #[Route('/entreprises/recrutement'name'companies_recruitments')]
  20.     public function companiesRecruitments(): Response
  21.     {
  22.         return $this->render('companies/companies_recruitments.html.twig');
  23.     }
  24.     /**
  25.      * Gestion des talents
  26.      */
  27.     #[Route('/entreprises/talents'name'companies_talents')]
  28.     public function talents(): Response
  29.     {
  30.         return $this->render('companies/companies_talents.html.twig');
  31.     }
  32.     /**
  33.      * Missions & prestataires
  34.      */
  35.     #[Route('/entreprises/missions'name'companies_missions')]
  36.     public function companiesMissions(): Response
  37.     {
  38.         return $this->render('companies/companies_missions.html.twig');
  39.     }
  40.     /**
  41.      * Intérims
  42.      */
  43.     #[Route('/entreprises/interims'name'companies_interims')]
  44.     public function companiesInterims(): Response
  45.     {
  46.         return $this->render('companies/companies_interims.html.twig');
  47.     }
  48.     /**
  49.      * Formations
  50.      */
  51.     #[Route('/entreprises/formation'name'companies_formations')]
  52.     public function companiesFormations(): Response
  53.     {
  54.         return $this->render('companies/companies_formations.html.twig');
  55.     }
  56. }