src/Controller/ExpertiseController.php line 15
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class ExpertiseController extends AbstractController{#[Route(path: ['fr' => '/{_locale<%app.supported_locales%>}/notre-expertise/','en' => '/{_locale<%app.supported_locales%>}/our-expertise/'], name: 'app_expertise', options: ['sitemap' => true])]public function index(): Response{return $this->render('expertise/index.html.twig', ['active_menu' => 'expertise',]);/*return $this->render('soon/index.html.twig', ['active_menu' => 'soon',]);*/}}