From 8361c877e0368efbc3896277d2223654c8a1e4f5 Mon Sep 17 00:00:00 2001 From: merdan Date: Fri, 15 Apr 2022 14:16:02 +0500 Subject: [PATCH] filter fix --- packages/Webkul/Product/src/Type/Configurable.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/Webkul/Product/src/Type/Configurable.php b/packages/Webkul/Product/src/Type/Configurable.php index 416de9ba5..89c65086c 100644 --- a/packages/Webkul/Product/src/Type/Configurable.php +++ b/packages/Webkul/Product/src/Type/Configurable.php @@ -3,6 +3,7 @@ namespace Webkul\Product\Type; use Illuminate\Support\Facades\DB; +use Illuminate\Support\Facades\Log; use Illuminate\Support\Str; use Webkul\Checkout\Models\CartItem as CartItemModel; use Webkul\Product\Datatypes\CartItemValidationResult; @@ -482,6 +483,7 @@ class Configurable extends AbstractType return 0; } + Log::info($minPrices); return min($minPrices); }