@extends('layout.masterBlog') @section('title',$title) @section('description',$description) @section('og:locale',app()->getLocale()) @section('og:type',$og_type) @section('og:title',$og_title) @section('og:description',$og_description) @section('og:url',$og_url) @section('og:site_name',$og_sitename) @section('twitter:title',$twitter_title) @section('twitter:description',$twitter_desc) @section('content')
{{$productDetail->post_name}}
{{ App::getLocale() == 'tr' ? $productDetail->category->name : $productDetail->category->name_en }}
(8)

{!! $productDetail->preface !!}

@lang('general.tags') @foreach($productDetail->tag as $tag) {{$tag->title}} @endforeach

@if($relatedProducts->count() > 0) @foreach($relatedProducts as $product)

Dersler: {{$product->post_name}}

@endforeach @endif
{!! $productDetail->content !!}
@if($activeComment->count()>0) @foreach($activeComment as $com)
@if($com->user->image == "") @else @endif
{{$com->user->name}}, dedi ki..

{{$com->user->name}} • {{ $com->created_at}}

{{$com->comment}}


@endforeach @else @endif
@if(Auth::check())
@lang('general.submit')
@else
@endif
@endsection @section('javascript') @endsection