<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class ConditionGeneralVenteController extends AbstractController{ #[Route('/condition_generale_vente', name: 'app_condition_generale_vente')] public function mentionLegale() { return $this->render('condition_generale_vente/index.html.twig'); }}