@extends('layouts.app') @section('title', 'Archive: ' . $monthName) @section('content')

Archive: {{ $monthName }}

@foreach($posts as $post) @include('partials.post-card', ['post' => $post]) @endforeach
{{ $posts->links() }}
@endsection