src/Controller/ProSiteController.php line 12

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 ProSiteController extends AbstractController
  7. {
  8.     #[Route('/', name: 'pro_home', host: 'flexenergie.pro')]
  9.     public function index(): Response
  10.     {
  11.         // Si l'utilisateur est connecté et a le rôle ROLE_CLIENT_PRO
  12.         if ($this->getUser() && in_array('ROLE_CLIENT_PRO'$this->getUser()->getRoles())) {
  13.             return $this->redirectToRoute('pro_dashboard');
  14.         }
  15.         // Sinon, afficher la page d'accueil pro
  16.         return $this->render('pro_site/index.html.twig');
  17.     }
  18. }