@if ($article->categories->isNotEmpty())
{{ implode(' | ', $article->categories->pluck('name')->toArray()) }}
@endif
{{ $article->title }}
@php
Carbon\Carbon::setLocale('fr');
@endphp
PubliƩ le {{ $article->published_at->translatedFormat('d F Y') }}
{{-- @if ($article->author)
par {{ $article->author->name }}
@endif --}}
{!! $article->body !!}
@if ($article->author)
{{ $article->author->name }}
Fondateur de La isla social club
@endif
{{--
@foreach ($relatedArticles as $relatedArticle)
{{ implode(' | ', $relatedArticle->categories->pluck('name')->toArray()) }}
{{ $relatedArticle->title }}
Lire
@endforeach
--}}