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/ste.komma.pro/resources/views/organisms/bubbles.blade.php
<div class="o-bubbles">

    <ul class="o-bubbles__list">

        @foreach(__('site/global.bubbleLinks') as $key => $item)
            <li class="o-bubbles__item" data-kal="fade" style="--kal-delay: {{($loop->index % 3)*0.15}}s">
                <a class="o-bubbles__link" href="{{$links->{$item['codeName']}->route}}">
                    <span class="o-bubbles__icon">@includeIf('components.icons.'.$item["codeName"])</span>
                    <span class="o-bubbles__content">
                        <span class="o-bubbles__title">{{$item['title']}}</span>
                        @include('components.textButton', [
                            'tagName' => 'span',
                            'buttonText' => $item['buttonText'],
                        ])
                    </span>
                </a>
            </li>
        @endforeach

    </ul>
</div>