Files
interface-kaznautes/src/Controller/HomeController.php

16 lines
408 B
PHP

<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class HomeController extends AbstractController
{
#[Route(path: '/', name: 'app_home', methods: ['GET'])]
public function home(): Response
{
return $this->render('home/home.html.twig');
}
}