@extends(get_view('index')) @section('title'){{ $product->content->name . ' - ' ?? '' }}@endsection @section('menu-active-products') current-menu-item @endsection @section('header') @endsection @section('content')
@include(get_view('components.pages.page-title'), [ 'title' => $product->content->name ?? translate('product'), 'breadcrumb_links' => [ [ 'title' => $product->category->content->name ?? translate('category'), 'url' => url('category/'.$product->category->content->url ?? '') ] ] ])

{{ $product->content->name ?? '' }}

@if ( $product != null ) @if ( $product->content != null ) @if ( $product->content->description != null ) {!! $product->content->description !!} @else

{{ translate('no_product_information_has_been_entered') }}

@endif @endif @endif
@endsection @section('footer') @endsection