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