<?php/** * Created by PhpStorm. * User: soeren * Date: 20.12.18 * Time: 12:48 */namespace App\Controller;use App\Entity\Resource;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class DashboardController extends AbstractController{ /** * @Route("/", name="dashboard") */ public function index() { return $this->redirectToRoute('project_index'); return $this->render('dashboard/index.html.twig', [ ]); }}