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/reiskick.komma.nl/resources/views/organisms/sidebar.blade.php
<div class="o-sidebar">

    @if(isset($sidebar))

        @foreach($sidebar as $component)
            @php \App\Components\Component::cleanUp($component) @endphp
            @if(View::exists($component->view))
                @include($component->view, [ 'componentLayout' => 'sidebarItem', 'componentAreaName' => 'component-area-' . uuid_create()])
            @else
                {{ debug('View not found: '. $component->view) }}
            @endif
        @endforeach

    @endif

    <div class="o-sidebar__footer">

        <div class="c-socials-rows__channels">
            @foreach(config('site.company_social') as $item)
                <a class="c-social-icon  c-social-icon--colored  {{$item}}" target="_blank" title="{{ ucfirst($item) }}" href="{{ config('site.company_social_' . $item) }}">
                    <span class="c-social-icon__logo"></span>
                </a>
            @endforeach
        </div>

        <div class="o-sidebar__logo">
            <img class="o-sidebar__img" alt="Logo {{ config('site.company_name') }}" src="/img/logo.svg">
        </div>

    </div>

</div>