@extends('layouts.front.front') @section('content')
@if($product->images->isNotEmpty()) @foreach($product->images as $key => $image)
thumbnail
@endforeach @endif

{{$product->name}}

{{$product->sub_title}}

{!! html_entity_decode($product->medium_description) !!}

Specifications

{!!html_entity_decode($product->specification->body)!!}
@if($product->manual_warranties->isNotEmpty())

Manuals & Warranties

@foreach($product->manual_warranties as $warranty)
{{$warranty->name ?? "N/A"}}
@if ($warranty->sub_title)

{{$warranty->sub_title ?? "N/A"}}

@endif
Download : {{$warranty->get_size('storage/files/product/document/')}} KB Format : {{$warranty->file_type}} Modified : {{$warranty->last_modified('storage/files/product/document/')}}
@endforeach @endif @if($product->catalogues->isNotEmpty())
Catelogue
@endif @if($product->catalogues->isNotEmpty()) @foreach($product->catalogues as $catalogue)
{{$catalogue->name}}

{{$catalogue->sub_title ?? "N/A"}}

Download : {{$catalogue->get_size('storage/files/product/document/')}} KB Format : {{$catalogue->file_type}} Modified : {{$catalogue->last_modified('storage/files/product/document/')}}
@endforeach @endif

Ordering Information

{!! html_entity_decode($product->order_information->body ?? "N/A") !!}
@if($related_products->isNotEmpty()) @endif
@endsection