File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/partials/brandNavigationBar.blade.php
<nav class="nav-brands column fluid-100">
<div class="bar">
<a class="title" href="/{{ $shop->getPageService()->page('brands')->route }}">
{{ Lang::get('partials/brandNavigationBar.brands_a_z') }}
</a>
<ul class="nav-brands-buttons">
@foreach($dropDownMenu->get() as $groupName => $categories)
<li data-name="{{ str_replace(' ','',$groupName) }}">{{ $groupName }}</li>
@endforeach
</ul>
@include('partials.buttons.default',[
'route' => '/' . $shop->getPageService()->page('brands')->route,
'text' => Lang::get('partials/brandNavigationBar.show_all_brands')
])
</div>
<div class="nav-brands-group-holder">
@foreach($dropDownMenu->get() as $groupName => $categories)
<div class="group" id="group_{{ str_replace(' ','',$groupName) }}" >
<div class="inner">
<ul>
@foreach($categories as $key => $category)
@if($key != 0 && $key % $dropDownMenu->getMaxItemsGroupList() == 0)
</ul>
<ul>
@endif
<li><a href="/{{ $category->route }}">{{ $category->name }}</a></li>
@endforeach
</ul>
</div>
</div>
@endforeach
</div>
</nav>