{{-- Blog Post Not Found — Contextual 404 Shown at /blog/:slug when post doesn't exist or is unpublished. Variables: $latestPosts Collection (max 6) --}} @extends('errors._layout', [ 'error_code' => 404, 'error_title' => 'Article Not Found', 'error_message' => 'This article is no longer available or the link has changed.', ]) @section('badge', 'Article Not Found') @section('primary-cta') Visit Blog @endsection @section('secondary-ctas') Home @endsection @section('recovery') @if(isset($latestPosts) && $latestPosts->count())

Latest Articles

@foreach($latestPosts->take(6) as $post)

{{ $post['title'] }}

@if(!empty($post['excerpt']))

{{ $post['excerpt'] }}

@endif @if(!empty($post['published_at']))

{{ $post['published_at'] }}

@endif
@endforeach
@endif @endsection