HegreLand/src/Controller/AffectationController.php
2024-10-17 14:33:38 +02:00

21 lines
492 B
PHP

<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class AffectationController extends AbstractController
{
#[Route('/affectation', name: 'app_affectation')]
public function index(): Response
{
return $this->render('affectation/index.html.twig', [
'controller_name' => 'AffectationController',
]);
}
}