@component('web.components.default.side-menu.side_menu', [ 'title' => 'Notícias', // 'search' => [ // 'action' => route('web.news.index'), // 'placeholder' => 'Pesquisar por título', // ], ]) @foreach ($items as $item) @include('web.components.default.side-menu.side_menu_item', [ 'href' => route('web.news.show', [ 'news' => $item->publication->slug, // 'news' => $item->publication->slug, // 'news' => $item->publication->slug ]), 'activeValidation' => "noticias/{$item->publication->slug}", 'title' => $item->publication->title, ]) @endforeach @endcomponent