src/Controller/TimelineController.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Timeline;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. class TimelineController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/{slug}", name="timeline")
  10.      */
  11.     public function index(Timeline $timeline)
  12.     {
  13.         return $this->render('timeline.html.twig', ['timeline' => $timeline]);
  14.     }
  15. }