@php $noticiasDestaque = $noticiasDestaque ?? collect(); $noticiasStructureNome = $noticiasStructure?->name ?? $secretaria?->name; $verTodasUrl = ! empty($secretaria?->slug) ? route('paginas.details', $secretaria->slug) : route('paginas.noticias', ['secretaria_id' => config('mobiangra.structure_id')]); @endphp

{{ __('Notícias') }}

@if (! empty($noticiasStructureNome)) {{ $noticiasStructureNome }} @endif
{{ __('Ver todas') }}
@if ($noticiasDestaque->isNotEmpty())
@foreach ($noticiasDestaque as $noticia)
@endforeach
@else

{{ __('Nenhuma notícia publicada no momento.') }}

@endif