forme création sortie

This commit is contained in:
marvin
2024-11-19 14:04:47 +01:00
parent 51fcbba8b2
commit 6403b41a3e
9 changed files with 344 additions and 0 deletions

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 LieuController extends AbstractController
{
#[Route('/lieu', name: 'app_lieu')]
public function index(): Response
{
return $this->render('lieu/index.html.twig', [
'controller_name' => 'LieuController',
]);
}
}