<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class CompaniesController extends AbstractController
{
/**
* Présentation générale – Entreprises & Enseignes
*/
#[Route('/entreprises', name: 'companies')]
public function companies(): Response
{
return $this->render('companies/companies.html.twig');
}
/**
* Recrutement
*/
#[Route('/entreprises/recrutement', name: 'companies_recruitments')]
public function companiesRecruitments(): Response
{
return $this->render('companies/companies_recruitments.html.twig');
}
/**
* Gestion des talents
*/
#[Route('/entreprises/talents', name: 'companies_talents')]
public function talents(): Response
{
return $this->render('companies/companies_talents.html.twig');
}
/**
* Missions & prestataires
*/
#[Route('/entreprises/missions', name: 'companies_missions')]
public function companiesMissions(): Response
{
return $this->render('companies/companies_missions.html.twig');
}
/**
* Intérims
*/
#[Route('/entreprises/interims', name: 'companies_interims')]
public function companiesInterims(): Response
{
return $this->render('companies/companies_interims.html.twig');
}
/**
* Formations
*/
#[Route('/entreprises/formation', name: 'companies_formations')]
public function companiesFormations(): Response
{
return $this->render('companies/companies_formations.html.twig');
}
}