Ajout du controller pour le partage vers les platformes de l'ivraison et les réseau sociaux

This commit is contained in:
Jeremy Hoarau
2025-01-09 10:40:42 +04:00
parent bf6d7a8716
commit b8b81a1241
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class PartageController extends AbstractController
{
#[Route('/partage', name: 'app_partage')]
public function index(): Response
{
return $this->render('partage/index.html.twig', [
'controller_name' => 'PartageController',
]);
}
}