Nos dernières actualités

Consultez les dernières actualités du club grâce à notre blog !

@if(count($posts) === 0) Aucune actualité n'a été publiée @endif @foreach($posts as $post) @php $content = null; if(strlen($post->content) > 150) { $content = substr($post->content, 0, 150) . '

...'; } else { $content = $post->content; } $categories = json_decode($post->categories, true); \Carbon\Carbon::setLocale('fr'); // Obtenir la timezone de l'utilisateur $userTimezone = "Europe/Paris"; // Date à formater $createdAt = \Carbon\Carbon::parse($post->created_at)->translatedFormat('D j F à H:i', 'fr'); // Ajuter la date à la timezone $formattedDate = $createdAt; @endphp
@if(count($categories) > 0 && $categories[0] !== "") @foreach($categories as $tag) {{ $tag }} @endforeach @endif

{{ $post->title }}

{!! clean($content) !!}

@endforeach
{{ $posts->links('vendor.pagination.tailwind') }}