@extends('layouts.public') @section('title', $news->title) @section('content') @include('partials.page-header', ['title' => $news->title])
@if($news->image) {{ $news->title }} @endif
Publicado el {{ $news->published_at?->format('d/m/Y') }}
@if($news->excerpt)

{{ $news->excerpt }}

@endif
{!! $news->content !!}
Otras noticias
@forelse($recent as $item) @if($item->image) @endif
{{ $item->title }}
@empty

No hay mas noticias.

@endforelse
@endsection