From e14e1a6d9c27a1b2d7f5fba5f139f474f5e5c507 Mon Sep 17 00:00:00 2001 From: merdan Date: Sun, 13 Nov 2022 15:34:29 +0500 Subject: [PATCH] invoice fx --- packages/Sarga/Shop/src/Repositories/ProductRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/Sarga/Shop/src/Repositories/ProductRepository.php b/packages/Sarga/Shop/src/Repositories/ProductRepository.php index 24cc53e6c..f0634f648 100644 --- a/packages/Sarga/Shop/src/Repositories/ProductRepository.php +++ b/packages/Sarga/Shop/src/Repositories/ProductRepository.php @@ -287,7 +287,7 @@ class ProductRepository extends WProductRepository })->whereNotNull('product_flat.special_price') ->where('product_flat.special_price','>',0)->paginate(10); - return null; + return $results; } public function getPopularProducts($categoryId = null)