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