@if (is_plugin_active('blog')) @php $recentPosts = get_recent_posts($limit ?? 3); @endphp @if ($recentPosts->isNotEmpty())

{{ __('Recent Posts') }}

@foreach ($recentPosts as $post)
@if ($post->image) {{ $post->name }} @endif
{{ $post->name }}
@if ($post->description)

{{ Str::limit($post->description, 100) }}

@endif {{ __('Read more') }}
@endforeach
@endif @endif