{{ __('Publicaciones') }}

@if ($posts->count())
@foreach ($posts as $post)

{{ $post->title }}

Publicado por {{ $post->user->name }} @if($post->published_at) el {{ $post->published_at->format('d/m/Y') }} @else (No publicado) @endif

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

Leer más
@endforeach
{{ $posts->links('vendor.pagination.bootstrap-5') }}
@else @endif