@if(!$product->addableToCart())
{{ trans('front::messages.products.unavailable') }}
@elseif($product->isSpecial())
{{ trans('front::messages.products.special-sale') }}
@if ($product->special_end_date)
0: 0: 0: 0
@endif
@endif @if($product->gallery()->count()) @endif
@include('front::products.partials.product-info')
@if ($product->isDownload()) @include('front::products.partials.links-tab') @endif @if ($product->description)

{{ trans('front::messages.products.general-specifications') }}

{!! $product->description !!}

@endif @if ($product->specificationGroups()->count())

{{ trans('front::messages.products.technical-specifications') }}

@foreach($product->specificationGroups->unique() as $group)

{{ $group->name }}

    @foreach($product->specifications()->where('specification_group_id', $group->id)->get() as $specification)
  • {{ $specification->name }}
    {!! nl2br(htmlentities($specification->pivot->value)) !!}
  • @endforeach
@endforeach
@endif @include('front::products.partials.reviews')
@include('front::components.comments', ['model' => $product, 'route_link' => route('front.product.comments', ['product' => $product]), 'message' => trans('front::messages.products.no-comments') ])
@if($related_products->count())

{{ trans('front::messages.products.related-products') }}

@endif