{!! BaseHelper::clean($product->name) !!}

{!! Theme::partial('ecommerce.product-price', compact('product')) !!}
@if ($product->brand->id)

{{ __('Brand') }}: {{ $product->brand->name }}

@endif @if (EcommerceHelper::isReviewEnabled()) {!! Theme::partial('star-rating', ['avg' => $product->reviews_avg, 'count' => $product->reviews_count]) !!} @endif
{{ __('Availability') }}: @if ($product->isOutOfStock()) {{ __('Out of stock') }} @elseif (! $product->with_storehouse_management || $product->quantity < 1) {!! BaseHelper::clean($product->stock_status_html) !!} @else {{ __('In stock') }} @endif
@php $withVariations = true; $withProductOptions = true; $isQuickShop = true; @endphp {!! Theme::partial('ecommerce.product-cart-form', compact('product', 'withVariations', 'withProductOptions', 'isQuickShop', 'selectedAttrs', 'productVariation')) !!}