@extends($_layout.'blog') @section('title', $page_title) @include($_lib.'register-meta') @section('breadcrumb.show', 'breadcrumb') @section('content')

{{ $page_title }}

{{$page_title}}
{{$article->dateFormat('d/m/Y')}}
@if ($article->auther)
{{$article->auther->name}}
@endif
{{$article->publishComments ? count($article->publishComments): 0}} Nhận xét

{{$article->title}}

{!! $article->content !!}
@if (count($article->tags))
Post Tags : @foreach ($article->tags as $tag) @endforeach
@endif
@include($_template.'comments',[ 'comments' => $article->publishComments, 'ref' => $article->type, 'ref_id' => $article->id, 'url' => $article->getViewUrl() ])
@endsection