diff --git a/src/Controller/DashboardController.php b/src/Controller/DashboardController.php index e93d322..594ec91 100644 --- a/src/Controller/DashboardController.php +++ b/src/Controller/DashboardController.php @@ -5,13 +5,14 @@ namespace App\Controller; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Attribute\Route; +use Symfony\Component\Security\Http\Authentication\AuthenticationUtils; -#[Route('/dashboard', name: 'DashboardController')] class DashboardController extends AbstractController { - #[Route('', name: '_index')] + #[Route(path: '/dashboard', name: 'app_dashboard')] public function index(): Response { return $this->render('dashboard/index.html.twig'); } -} + +} \ No newline at end of file