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/beat-the-barn.komma.nl/resources/views/organisms/team.blade.php
<div class="o-team">
    @if(isset($teamHeading))
        <h2 class="o-team__heading" data-kal="fade">{{$teamHeading}}</h2>
    @endif

    <div class="o-team__matrix">
        @foreach($teamMembers as $teamMember)
            <div class="o-team__item" data-kal="fade" style="--kal-delay: {{($loop->index % 5)*0.1}}s">
                @include('components.profile', [
                    'profileImage' => $teamMember->documents->first()->medium_image_url ?? null,
                    'profileTitle' => $teamMember->name ?? null,
                    'profileLabel' => $teamMember->translation->function ?? null,
                ])
            </div>
        @endforeach
    </div>

    @if(isset($teamActionButton))
        <div class="o-team__action" data-kal="fade">
            @include('components.button', [
               'buttonText' => $teamActionButton ?? null,
               'buttonLink' => $links->coaches->route ?? '/',
           ])
        </div>
    @endif
</div>