Example #1
0
 public function category($id)
 {
     $categories = Category::all();
     $category = Category::findOrNew($id);
     $products = Product::ofCategory($id)->get();
     return view('store.category', compact('categories', 'category', 'products'));
 }