@extends('frontend.layouts.app') @section('content')

Latest Updates

News

@forelse($posts as $post)
@if(!$post->featured_image)
Featured Image
@endif

{{ $post->title }}

{{ optional($post->published_at)->format('F d, Y h:i A') ?? $post->created_at->format('F d, Y h:i A') }}

{{ $post->excerpt }}

Read More →
@empty
No news posts yet.
@endforelse
{{ $posts->links() }}
@endsection