{{ $noticia->titulo }}
@if ($lead){{ $lead }}
@endif
@if ($fecha)
{{ $fecha }}
@endif
Documento
@if ($docUrl && $docExists)
@else
@endif
404 | NO ENCONTRADO
No se pudo localizar el documento asociado a esta noticia.
Otras Noticias
@forelse($others as $item)
@php
$oImg = $item->imagen ?: 'images/no-photo.jpg';
$oImg = asset(
ltrim(str_starts_with($oImg, '/') ? $oImg : '/' . ltrim($oImg, '/'), '/'),
);
$oDate = $item->fecha?->locale('es')->translatedFormat('j \\d\\e F, Y');
@endphp
@empty
{{ $item->titulo }}
{{ \Illuminate\Support\Str::limit(strip_tags($item->descripcion ?? ''), 120) }}
{{ $oDate }}
No hay más noticias.
@endforelse