@extends('layouts.app') @section('title','Newsroom — '.setting('site_name')) @section('content') @include('partials.page-hero', ['slug'=>'news', 'cta'=>false])
@if($posts->isEmpty())

No news posts yet.

@else @php($featured = $posts->first())
{{ $featured->category }}

{{ $featured->title }}

{{ $featured->excerpt }}

{{ $featured->published_at?->format('d M Y') }}
@endif
@endsection