@if($posts->isEmpty())

Aucun article pour l'instant.

@else
@foreach($posts as $post)
@if($post->featured_image)
{{ $post->title }}
@endif

{{ \Illuminate\Support\Carbon::parse($post->published_at)->translatedFormat('d F Y') }}

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif Lire la suite →
@endforeach
{{ $posts->links() }} @endif