@if($product->description)
{!! $product->description !!}
@endif {{-- FAQ --}} @if(!empty($product->faqs) and $product->faqs->count() > 0)

{{ trans('public.faq') }}

@foreach($product->faqs as $faq)
{{ clean($faq->answer,'answer') }}
@endforeach
@endif {{-- ./ FAQ --}} @if(!empty(getStoreSettings('activate_comments')) and getStoreSettings('activate_comments')) {{-- product Comments --}} @include('web.default.includes.comments',[ 'comments' => $product->comments, 'inputName' => 'product_id', 'inputValue' => $product->id ]) {{-- ./ product Comments --}} @endif