Redesign with toolbar

This commit is contained in:
2024-03-19 19:21:52 +01:00
parent 56ae6196a5
commit 0a8f7afe3e
8 changed files with 264 additions and 127 deletions

View File

@@ -51,7 +51,7 @@ class ProductsCompareController extends Controller
Log::info("ONLINE {codes} {countries}", ["codes" => $codes, "countries" => $countries, "online" => $online]);
$products = $this->countryCompareController->compare($countries, $cHash, $codes);
} else {
$products = IkeaProducts::whereIn("code", $aCodes);
$products = IkeaProducts::whereIn("itemNoGlobal", $aCodes);
if (count($countries)) $products->whereIn("country", $countries);
$products = $products->get();
}