@extends(get_view('index')) @section('title'){{ $product->name . ' - ' ?? '' }} @endsection @section('menu-active-products') active @endsection @section('header') @endsection @section('content') @include(get_view('components.pages.page-title'), ['title' => $product->name ?? translate('product')])
@foreach ($product->product->all_images as $key => $value) @endforeach
@if ( $product != null ) @if ( $product->product != null ) @if ( $product->product->content != null ) @if ( $product->product->content->description != null )

{{ translate('product_description') }}


{!! $product->product->content->description !!}
@else

{{ translate('no_product_information_has_been_entered') }}

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