@php $limit = $content['limit'] ?? 3; $recentPosts = \App\Models\BlogPost::with('category') ->where('published_at', '<=', now()) ->orderBy('published_at', 'desc') ->limit($limit) ->get(); @endphp @if($recentPosts->isNotEmpty())

{{ $content['title'] ?? 'Yazılarımız ve Önerilerimiz' }}

Tümünü Gör chevron_right
@foreach($recentPosts as $post) @endforeach
@endif