HegreLand/src/Controller/DashboardController.php
2024-09-26 15:49:16 +02:00

19 lines
451 B
PHP

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