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