@if (! EcommerceHelper::hideProductPrice() || EcommerceHelper::isCartEnabled())
{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->front_sale_price !== $product->price) {{ format_price($product->price_with_taxes) }} @endif
@if (is_plugin_active('marketplace') && $product->store->id)
{{ __('Sold by') }}:
{{ $product->store->name }}
@endif
{!! BaseHelper::clean($product->name) !!}
@if (EcommerceHelper::isReviewEnabled())
({{ $product->reviews_count }})
@endif
@if (Botble\Ecommerce\Facades\FlashSale::isShowSaleCountLeft())
@if ($product->pivot->quantity > $product->pivot->sold)
{{ __('Sold') }}: {{ (int)$product->pivot->sold }}
@else
{{ __('Sold out') }}
@endif
@endif