13 lines
324 B
PHP
13 lines
324 B
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
class IndexController extends AbstractController{
|
|
#[Route('/index', name: 'index_app')]
|
|
public function index(){
|
|
return $this->render('base.html.twig');
|
|
}
|
|
} |