@extends('layouts.frontend') @section('seo_page_title', $product->seo_page_title) @section('seo_meta_description', $product->seo_meta_description) @section('content')
@include('shared.brand-logo', ['brand' => $brand, 'width' => '60px;'])

{{ $product->name }} {{ $product->ref }}

@include('shared.product-image')
{{ $product->description }} @if($product->attributes->count() > 0)
@foreach($product->attributes as $item) @include('shared.attributes.'.$item->attribute->type.'.show', ['value' => $item->value, 'attribute' => $item->attribute]) @endforeach
@endif
@endsection