@extends('layouts.public') @section('title', 'Actualités') @section('content')

Actualités

Nos actus & décryptages

@if($posts->isEmpty())

Aucun article publié pour l'instant.

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

{{ $post->published_at?->translatedFormat('d F Y') }}

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

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