Add the lowest price column to every product list view
This commit is contained in:
@@ -15,7 +15,7 @@ final class CategoryController extends BaseController
|
||||
return $this->render('productList.html.twig', ['listType' => 'category_'.$category]);
|
||||
}
|
||||
|
||||
$products = Product::with('price')
|
||||
$products = Product::with(['price', 'lowestPrice'])
|
||||
->selectRaw('products.*')
|
||||
->distinct('products.id')
|
||||
->fromRaw('products, json_each(products.categories)')
|
||||
|
||||
Reference in New Issue
Block a user