src/Controller/ProduitController.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use App\Repository\ProduitRepository;
  6. class ProduitController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/product", name="app_product")
  10.      */
  11.     public function show(ProduitRepository $ProduitRepository)
  12.     {
  13.         return $this->render('produit/liste_produit.html.twig', [
  14.             'produits'=> $ProduitRepository->findAll(),
  15.         ]);
  16.     }
  17.     
  18. }