@php $noticias = $noticias ?? []; $pathSystem = $pathSystem ?? $_SERVER['DOCUMENT_ROOT'] . "/"; $angraDefault = $angraDefault ?? asset("/pmar/assets/img/angra-default.png"); @endphp

{{ __("Últimas Notícias") }}

@forelse($noticias as $noticia) @include('components.dashboard._newsItem', [ 'noticia' => $noticia, 'pathSystem' => $pathSystem, 'angraDefault' => $angraDefault ]) @empty

{{ __("Nenhuma notícia publicada") }}

@endforelse