@if(is_array($product) && $product)
{{ $product['name'] }}
{{ $product['name'] }}
@if($product['seller_name'])
{{ $product['seller_name'] }}
@endif
@if($product['rating'] ?? 0)
@for($i = 1; $i <= 5; $i++) @endfor
({{ number_format($product['reviews_count'] ?? 0) }})
@elseif($product['reviews_count'] ?? 0)
{{ number_format($product['reviews_count']) }}
@endif @if($product['active_installations'] ?? 0)
{{ number_format($product['active_installations']) }}+
@elseif($product['downloaded'] ?? 0)
{{ number_format($product['downloaded']) }}
@endif
{{ $product['price_format'] }}
{{ __('panel/common.view') }}
@endif