{{translate('most_popular_products')}}

@if($topRatedProducts)
@foreach($topRatedProducts as $key=>$product)
{{$product->name}} image
{{isset($product)?substr($product->name,0,30) . (strlen($product->name)>20?'...':''):'not exists'}}
{{round($product['ratings_average'],2)}} ({{$product['reviews_count']}} {{ translate('reviews')}})
@endforeach
@else

{{translate('no_Top_Selling_Products')}}

@endif