src/Controller/DashboardController.php line 13

Open in your IDE?
  1. <?php
  2. // src/Controller/DashboardController.php
  3. namespace App\Controller;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class DashboardController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/dashboard", name="blog_list")
  10.      */
  11.     public function list()
  12.     {
  13.         $number random_int(0100);
  14.         return $this->render('pages/dashboard.html.twig', [
  15.             'number' => $number,
  16.         ]);
  17.     }
  18. }