@extends('layout.app') @section('title') {{ $product->title }} @endsection @section('css') @stop @section('content')
@include('parts.header-panel') @include('parts.header') @php $currentLocale = LaravelLocalization::getCurrentLocale(); @endphp

{{ !empty($product->h1) ? $product->h1 : $product->title }}

  • {!! Translation::trans('catalog.filter.length', 'Długość') !!}
  • {!! Translation::trans('catalog.filter.mkm', 'MKM') !!}
  • {!! Translation::trans('catalog.filter.width', 'Szerokość') !!}
  • {!! Translation::trans('catalog.filter.adhesive-layer', 'Adhesive layer') !!}
  • {!! Translation::trans('order.packs', 'Ilość w zamówieniu, pudełka') !!}
@if(!$product->colors->isEmpty())
{!! Translation::trans('product.color', 'Colory') !!}:
@foreach($product->colors->translate($currentLocale) as $color) @endforeach
@endif
@if($product->price)
{{ $product->price / 100 }} {!! Translation::trans('produc.price.сurrency', '₴') !!}
@endif
@endsection @section('javascript') @stop