<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;/** * Class IndexController * @package App\Controller * @Route("/") */class IndexController extends AbstractController{ /** * @Route("", name="index") */ public function index() { return $this->render('base.html.twig'); } /** * @Route("/dashboard", name="dashboard") */ public function dashboard() { return $this->render('base.html.twig'); }}