@extends('layouts.public') @section('title', $title) @section('content')

{{ $title }}

@forelse($posts as $post)
@if($post->featured_image) {{-- This line is now corrected --}} {{ $post->title }} @endif

{{ $post->title }}

@if($post->published_at) {{ jdate($post->published_at)->format('%d %B %Y') }} @endif

{{ $post->lead }}

@empty
No posts found for this selection.
@endforelse
{{ $posts->links() }}
@endsection