{{ __('Portal Berita') }}

@if($posts->isEmpty())

Belum ada artikel. Silakan cek lagi nanti.

@else
@foreach($posts as $post)
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

Oleh {{ $post->author->name }} • {{ $post->published_at->format('d M Y') }}

{{ Str::limit(strip_tags($post->content), 150) }}

@endforeach
{{ $posts->links() }}
@endif