src/Controller/DashboardController.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use App\Controller\BaseController;
  6. class DashboardController extends BaseController
  7. {
  8.     #[Route('/'name'homepage')]
  9.     public function homepage(): Response
  10.     {
  11.         return $this->render('dashboard/dashboard.html.twig');
  12.     }
  13. }