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