@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')
{{'-'.' '.Helpers::currency_converter($product->discount)}}
@endif
@endif
@php($wishlist = count($product->wishList)>0 ? 1 : 0)
@php($compare_list = count($product->compareList)>0 ? 1 : 0)