@extends(get_view('index')) @section('title'){{ $product->content->name . ' - ' ?? '' }}@endsection @section('menu-active-products') active @endsection @section('header') @endsection @section('content') @include(get_view('components.pages.page-title'), [ 'title' => $product->content->name ?? __('Product'), 'breadcrumb_links' => [ [ 'title' => $product->category->content->name ?? __('Category'), 'url' => url('category/'.$product->category->content->url ?? '') ] ] ])
@foreach ($product->all_images as $key => $value) @endforeach

{{ $product->content->name ?? __('Product') }}

{{ $product->category->content->name ?? __('Category') }}

{{ __('Paylaş') }}
{{ __('Ürün Açıklaması') }}

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

{{ __('Veri Bulunamadı') }}

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