@inject('systemPresenter', 'App\Presenters\SystemPresenter') @extends('layouts.app') @section('title', $systemPresenter->checkReturnValue('title', $article->title)) @section('description', $systemPresenter->checkReturnValue('seo_desc', $article->desc)) @section('keywords', $systemPresenter->checkReturnValue('seo_keyword', $article->keyword)) @section('style') @endsection @section('header-text')

{{ $article->title }}

{{ $article->created_at }}   @if($article->category) {{ $article->category->name }} @endif

  @foreach ($article->tag as $tag) {{ $tag->tag_name }}   @endforeach

@endsection @section('content')
{!! $article->html_content !!}
@include('default.comment.index', [ 'commentId' => $article->id, 'commentTitle' => $article->title, 'commentUrl' => Request::getUri() ]) @endsection @section('script') @endsection