From 71f01ce0b2b1beed60a41a0eb29e1df0e8cddc53 Mon Sep 17 00:00:00 2001 From: Afaz Khatri Date: Sat, 10 Oct 2020 14:11:30 +0530 Subject: [PATCH] Removed unneccessary space --- packages/Webkul/API/Http/Resources/Catalog/Product.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/Webkul/API/Http/Resources/Catalog/Product.php b/packages/Webkul/API/Http/Resources/Catalog/Product.php index 75ec94c11..23f39c351 100644 --- a/packages/Webkul/API/Http/Resources/Catalog/Product.php +++ b/packages/Webkul/API/Http/Resources/Catalog/Product.php @@ -58,7 +58,7 @@ class Product extends JsonResource $product->getTypeInstance()->haveSpecialPrice(), core()->currency($product->getTypeInstance()->getSpecialPrice()) ), - 'regular_price' => data_get($prices, 'regular_price.price'), + 'regular_price' => data_get($prices, 'regular_price.price'), 'formated_regular_price' => data_get($prices, 'regular_price.formated_price'), 'reviews' => [ 'total' => $total = $this->productReviewHelper->getTotalReviews($product),