Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function listEachCategoryProducts($id)
- {
- $categories = $this
- ->getDoctrine()
- ->getRepository('AppBundle:Category')
- ->find($id);
- var_dump($categories);
- return $this->render('category/show.category.products.html.twig', array(
- 'categories' => $categories
- ));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement