@extends('layouts.Article') @section('bodyClass', 'articles') @section('meta') Blog Post Archives {{ isset($_GET['page']) ? 'page ' . $_GET['page'] : '' }} - AOLC BC @endsection @section('welcome-title')

Articles | News | Events

@endsection @section('content')
@foreach($articles ?? [] as $article)
{{ $article->title }}
{!! substr($article->content, 0, 30) !!}…

Posted by AOLCC | {{ $article->published_at->format('jS F Y') }}

@endforeach
{{ $articles->links('partials.pagination') }}
@endsection