@extends('layouts.app') @section('title', 'News & Posts') @section('nav_posts', 'bg-teal-50 text-teal-700 font-semibold') @section('page_title', 'News & Announcements') @section('page_subtitle', 'Blog posts shown on the public /news page') @section('content') @if(session('success'))
{{ $posts->count() }} post{{ $posts->count() !== 1 ? 's' : '' }}
New Post{{ $post->excerpt }}
@endif{{ $post->published_at ? $post->published_at->format('M j, Y g:i A') : 'No publish date' }} @if($post->author) ยท by {{ $post->author->name }}@endif