@extends('news.layout', [ 'metaTitle' => $archiveDate->format('F Y') . ' — News Archive', 'metaDescription' => 'News archive for ' . $archiveDate->format('F Y') . ' on Skinbase Nova.', 'metaCanonical' => route('news.archive', ['year' => $archiveDate->year, 'month' => $archiveDate->month]), ]) @section('news_content') @php $headerBreadcrumbs = collect([ (object) ['name' => 'Community', 'url' => route('community.activity')], (object) ['name' => 'Announcements', 'url' => route('news.index')], (object) ['name' => $archiveDate->format('F Y'), 'url' => route('news.archive', ['year' => $archiveDate->year, 'month' => $archiveDate->month])], ]); @endphp
@if($articles->isEmpty())
No articles were published during this month.
@else
@foreach($articles as $article) @include('news._article_card', ['article' => $article]) @endforeach
{{ $articles->links() }}
@endif
@endsection