FestinHegre/src/Controller/IndexAccueilController.php

16 lines
350 B
PHP

<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Attribute\Route;
class IndexAccueilController extends AbstractController{
#[Route('/indexAdmin', name: 'index_admin_app')]
public function indexAdmin(){
return $this->render('base.html.twig');
}
}