{!! ucwords($product->name) !!}
@if(isset($product->unit))
({{ $product->unit->unit_name }})
@endif
@if(($product->promotion == 1) && (($product->last_date > date('Y-m-d')) || !isset($product->last_date)))
{{$currency->symbol ?? $currency->code}}{{ $product->promotion_price }}
{{$currency->symbol ?? $currency->code}}{{ $product->price }}
@else
{{$currency->symbol ?? $currency->code}}{{ $product->price }}
@endif
@if(!empty($ecommerce_setting->theme) && $ecommerce_setting->theme != 'fashion')
@if($product->in_stock == 1)
@if(is_null($product->is_variant))
@else
@endif
@else
@if($product->qty > 0)
@if(is_null($product->is_variant))
@else
@endif
@else
{{trans('file.Out of stock')}}
@endif
@endif
@endif