HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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>