@if (is_plugin_active('blog')) @if (($posts = get_recent_posts($config['number_display'])) && $posts->count() && $posts->loadMissing(['author']))

{!! BaseHelper::clean(Arr::get($config, 'title')) !!}

{!! BaseHelper::clean(Arr::get($config, 'subtitle')) !!}

@foreach ($posts->take(2) as $post)
{{--
--}} {!! BaseHelper::clean($post->name) !!}

{{ $post->created_at->translatedFormat('M d, Y') }}

{{ $post->description }}

@endforeach
@foreach ($posts->skip(2) as $post)
{!! BaseHelper::clean($post->name) !!}

{{ $post->created_at->translatedFormat('M d, Y') }}

{{--
--}}
@endforeach
@endif @endif