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