所以我一直在努力解决这个问题。
我不想获得包含某个支点category
的所有“产品”。
所以我有一条路线:
Route::get('products/{category}', ['as' => 'category.products', 'uses' => 'ProductsController@getCatProducts']);
产品型号:
public function categories()
{
return $this->belongsToMany(Category::class);
}
然后我的控制器:
public function getCatProducts($categoryUrl)
{
$products = Product::get();
$productsWithCat = [];
// loop through all projects
foreach($products as $product) {
// loop through all categories assigned to product
$categories = $product->categories;
foreach($categories as $category) {
// check if product has category from url
if ($category->title == $categoryUrl) {
array_push($productsWithCat, $product);
}
}
}
$category = $categoryUrl;
$products = $productsWithCat;
return view('pages.category-products', compact('products', 'category'));
}
所以这可行,但可能有更好的方法。 类似的东西:
$products = Product::with('categories.title', $categoryUrl)->get();
此外,我的方式返回一个数组,而不再是一个集合,所以我甚至无法进入我的刀片中的类别。
我希望有人可以帮助我。
谢谢!
答案 0 :(得分:3)
有一个更好的方式,你很亲密......
$products = Product::with('categories')
->whereHas('categories', function($q) use ($categoryUrl) {
$q->where('title', $categoryUrl);
})->get();
答案 1 :(得分:1)
您可能需要在类别模型中实施 belongsToMany 方法,以便同时返回属于此特定传递类别的所有产品集合。
// Category.php
public function products()
{
return $this->belongsToMany(Product::class);
}
在控制器中使用:
$products = Category::with('products')->where('title', $categoryName)->get();