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

{{ $nameCat }}

@if ( count($listPostByCategories) > 0 )
@foreach ( $listPostByCategories as $value )
{{ $value->title }}
{{ GeoHelper::formatDate('Y-m-d H:i:s',$value->created_at,'d-m-Y') }}
{!! $value->sub_description !!}
@endforeach
{{ $listPostByCategories->appends(Request::all())->links() }}
@endif
@endsection