@php use App\Utils\Helpers;use App\Utils\ProductManager;use Illuminate\Support\Str; @endphp
@php($overallRating = getOverallRating($product->reviews))
@if($product->discount > 0)
@if ($product->discount_type == 'percent')
{{'-'.' '.round($product->discount, (!empty($decimal_point_settings) ? $decimal_point_settings: 0)).'%'}}
@elseif($product->discount_type =='flat')
{{'-'.' '.webCurrencyConverter($product->discount)}}
@endif
@endif