Remove duplicate products in category view due to the bug with the list of category.

This commit is contained in:
Krzysztof Płaczek
2024-11-26 08:28:23 +01:00
parent 277257fda2
commit 369bacc38c

View File

@@ -13,6 +13,7 @@ final class CategoryController extends BaseController
{ {
$products = Product::with('price') $products = Product::with('price')
->selectRaw('products.*') ->selectRaw('products.*')
->distinct('products.id')
->fromRaw('products, json_each(products.categories)') ->fromRaw('products, json_each(products.categories)')
->whereRaw('json_each.value = ?', [$category]) ->whereRaw('json_each.value = ?', [$category])
->orderByDesc('starred') ->orderByDesc('starred')