src/Controller/Admin/HomeController.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Admin;
  3. use Symfony\Component\Routing\Annotation\Route;
  4. class HomeController extends AdminController
  5. {
  6.     /**
  7.      * @Route("/", name="admin_home")
  8.      */
  9.     public function index()
  10.     {
  11.         return $this->render("Admin/Home/index.html.twig"compact([]));
  12.     }
  13. }