<?php
namespace App\Controller;
use App\Entity\Advertisement;
use App\Entity\Article;
use App\Entity\Block;
use App\Entity\Region;
use App\Entity\WorkType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Routing\Annotation\Route;
class DashboardController extends AbstractController
{
/**
* @Route("/", name="dashboard")
*/
public function indexAction()
{
return $this->render('dashboard/index.html.twig');
}
}