@extends('theme::layout') @section('title', 'Bulletins') @section('content') @include('theme::_hero_banner', [ 'heroTitle' => 'Bulletins', 'heroSubtitle' => 'Weekly and monthly parish bulletins and newsletters', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Bulletins'], ], ])
@php $grouped = $bulletins->groupBy('year'); @endphp @forelse($grouped as $year => $items)

{{ $year }}

@empty
📄

No bulletins available yet.

@endforelse
{{ $bulletins->links() }}
@endsection