@foreach(config('menus') as $menu) @if($menu->layout == 'all' OR $menu->layout == 'header') @if($menu->route)
{{__($menu->title)}}
@elseif($menu->url)
{{__($menu->title)}}
@endif @endif @if($loop->index == 5)
@endif @endforeach @if(config('settings.sidenav_featured') == 'active')
{{__('Featured')}}
@foreach(\App\Models\Post::where('featured', 'active')->limit(10)->get() as $post)
{{$post->title}}
{{__(':view view', ['view' => $post->view])}}
@endforeach
@endif