@extends('frontend.master') @section('title', $detailPost->seo_title != null ? $detailPost->seo_title : $detailPost->title) @section('description', $detailPost->seo_description) @section('keywords', $detailPost->keywords) @section('type', 'article') @section('content')
{{ Breadcrumbs::render('post', $detailPost) }}

{{ $detailPost->title }}

{{ GeoHelper::formatDate('Y-m-d H:i:s',$detailPost->created_at,'d-m-Y') }}
{!! $detailPost->description !!}
{{--
Bình luận
--}}
Tin mới nhất
    @foreach ( $listPostNew as $value )
  • {{ $value->title }}
    {{ GeoHelper::formatDate('Y-m-d H:i:s',$value->created_at,'d-m-Y') }}
  • @endforeach
Các tin khác
    @foreach ( $listPostOthers as $value )
  • {{ $value->title }}
    {{ AschoolHelper::formatDate('Y-m-d H:i:s',$value->created_at,'d-m-Y') }}
  • @endforeach
@endsection