service motocultrice, traductions

This commit is contained in:
Tykayn 2025-05-26 11:55:44 +02:00 committed by tykayn
parent 528ebb672a
commit f5ab0c8205
16 changed files with 427 additions and 128 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;
final class AdminController extends AbstractController
{
#[Route('/admin', name: 'app_admin')]
public function index(): Response
{
return $this->render('admin/index.html.twig', [
'controller_name' => 'AdminController',
]);
}
}