src/Controller/HomeController.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. class HomeController extends AbstractController
  7. {
  8.     #[Route("/"methods: ["GET"], name"home"host'seximately.com')]
  9.     /**
  10.      * @return Response
  11.      */
  12.     public function index(): Response
  13.     {
  14.         return $this->render('page/home.html.twig');
  15.     }
  16. }