@if ($articles->isEmpty())

No articles published yet. Check back soon.

@else {{-- Featured (first page only) --}} @if ($featured && $articles->onFirstPage())
Featured · {{ $featured->category }}

{{ optional($featured->published_at)->format('d M Y') }} · {{ $featured->reading_time }} min read

{{ $featured->title }}

{{ $featured->excerpt }}

Read article
@endif
@foreach ($articles as $article) @if ($featured && $article->is($featured) && $articles->onFirstPage()) @continue @endif @endforeach
{{ $articles->links() }}
@endif