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/rentman.komma.pro/app/views/layouts/partials/mobileNavigation.blade.php
<div class="mobile-navigation">
    <div class="bar">
        <div class="toggle-menu">
            <div class="icon">
                <span></span>
                <span></span>
                <span></span>
            </div>
        </div>
        <a class="logo" href="/"> 
            <span></span>
        </a>
    </div>
    <div class="shader"></div>

    <div class="menu">
        <div class="language language-selector">
            <ul>
                @foreach($otherLanguages as $language)
                    <li @if(\App::getLocale() == $language->iso_2) class="active" @endif >
                        <a data-language="{{$language->iso_2}}"
                           href="/@if($language->route->route!='/'){{$language->route->route}}@endif">
                            {{$language->iso_2}}
                        </a>
                    </li>
                @endforeach
            </ul>
        </div>

        <nav>
            <ul>
                @foreach($mainNav as $item)
                    <li @if($data->content->code_name == $item->code_name) class="active" @endif>
                        <a href="/{{$item->route}}">{{$item->name}}
                        </a>
                    </li>
                @endforeach
                <li class="divide"></li>
                @foreach($subNav as $item)
                    <li @if($data->content->code_name == $item->code_name) class="active" @endif>
                        <a href="/@if($item->route!='/'){{$item->route}}@endif">@if($item->code_name == 'timeline') @lang('translations.'.$item->code_name) @else {{$item->name}} @endif
                        </a>
                    </li>
                @endforeach
            </ul>
        </nav>

        <p class="social">
            <strong>@lang('translations.followUs')</strong>

            <span class="icons">
                <a href="{{\Config::get('business.facebook')}}"><span class="facebook"></span></a>
                <a href="{{\Config::get('business.linkedin')}}"><span class="linkedin"></span></a>
            </span>
        </p>

        {{--<div class="contact-information">--}}
        {{--<h3>{{\Config::get('business.business-name')}}</h3>--}}
        {{--<p>--}}
        {{--<a href="mailto:{{\Config::get('business.email')}}">{{\Config::get('business.email')}}</a><br/>--}}
        {{--<a href="tel:{{\Config::get('business.phone.call')}}">{{\Config::get('business.phone.display')}}</a>--}}
        {{--</p>--}}
        {{--<p>--}}
        {{--{{\Config::get('business.adres')}}<br/>--}}
        {{--{{\Config::get('business.zip')}} {{\Config::get('business.city')}}<br/>--}}
        {{--{{\Config::get('business.country')}}<br/>--}}
        {{--</p>--}}

        {{--</div>--}}
    </div>
</div>