@extends('layouts.public') @section('title', 'Noticias') @section('content') @include('partials.page-header', ['title' => $settings?->news_title ?: 'Noticias'])
@forelse($news as $item)
@if($item->image) {{ $item->title }} @endif
{{ $item->published_at?->format('d/m/Y') }}
{{ $item->title }}

{{ Str::limit($item->excerpt ?? strip_tags($item->content ?? ''), 100) }}

Leer mas
@empty
No hay noticias publicadas.
@endforelse
@if($news->hasPages())
{{ $news->links() }}
@endif
@endsection