File: D:/HostingSpaces/Eurotools/euro-tools.nl/resources/views/site/partials/header/navigation.blade.php
<nav class="grid-col">
<ul>
@foreach(\Config::get('site.navigation') as $navItem)
@if(!empty($links->{$navItem}))
<li class="{{$navItem}} @if( (!empty($page) && $page->code_name == $navItem) || ($navItem=="products" && (!empty($categories) || !empty($category))) ) active @endif">
<a href="@if($navItem != 'home' || ($navItem == 'home' && \App::getLocale() != 'nl'))/@endif{{$links->{$navItem}->route}}">{{$links->{$navItem}->name}}</a>
</li>
@endif
@endforeach
</ul>
</nav>