<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;/** * @Route("/actualite") */class ActusController extends AbstractController{ /** * @Route("/", name="actus") */ public function index(): Response { return $this->render('actus/index.html.twig', [ ]); }}