src/Controller/Front/MainController.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Front;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class MainController extends AbstractController
  7. {
  8.     #[Route('/'name'app_main')]
  9.     public function index(): Response
  10.     {
  11.             return $this->redirectToRoute('app_admin_dashboard');
  12.         //return $this->render('front/main/index.html.twig');
  13.     }
  14. }