domain-watchdog/src/Controller/HomeController.php

19 lines
387 B
PHP
Raw Normal View History

2024-07-19 02:28:05 +02:00
<?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: "index")]
public function index(): Response
{
2024-07-21 19:47:25 +02:00
return $this->render('index.html.twig');
2024-07-19 02:28:05 +02:00
}
}