Advertisement
Guest User

Category

a guest
Apr 17th, 2017
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public function listEachCategoryProducts($id)
  2. {
  3. $categories = $this
  4. ->getDoctrine()
  5. ->getRepository('AppBundle:Category')
  6. ->find($id);
  7.  
  8. var_dump($categories);
  9.  
  10. return $this->render('category/show.category.products.html.twig', array(
  11. 'categories' => $categories
  12. ));
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement