src/Controller/Home.php line 10
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class Home extends AbstractController {
#[Route("/", name: "home")]
public function home(){
return $this->render("index/home.twig");
}
}