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