<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class DashboardController extends AbstractController
{
/**
* @Route("/", name="main")
*/
public function main()
{
return $this->redirectToRoute('users');
}
/**
* @Route("/admin/", name="dashboard")
*/
public function index()
{
return $this->redirectToRoute('users');
return $this->render('dashboard/index.html.twig', []);
}
}