@extends('frontend.layouts.app') @section('title', $content->seo_title) @section('description', $content->seo_description) @section('keywords', $content->seo_keywords) @if (!empty($content->image)) @section('image', $content->image) @endif @section('content') @include('frontend.common.header')

{{$content->title}}

{{$content->author}}
{{site_date_format($content->created_at)}}

{!! $content->description !!}
@if ($posts->count() > 0)

Posts

@foreach ($posts as $item)
{{$item->title}}

{{$item->author ?? null}}
{{site_date_format($item->created_at)}}

{{str_limit($item->title , $limit = 30, $end = '...')}}

{{str_limit($item->short_text , $limit = 30, $end = '...')}}

@endforeach
@endif
@include('frontend.block.subscribe') @endsection