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/csb.komma.pro/resources/views/organisms/featuredProjects.blade.php
<div class="o-featured">
    <div class="l-contain">
        @include('organisms.headingRow', [
            'headingRowTitle' => $headingRowTitle ?? __('site/projects.our_projects'),
            'headingRowButtonLabel' => $headingRowButtonLabel ?? __('site/projects.all_projects'),
            'headingRowButtonLink' => $headingRowButtonLink ?? $links->projects->route,
        ])

        <ul class="o-featured__grid">
            @if(!empty($featuredProjects))
                @foreach($featuredProjects as $proj)
                    <li class="o-featured__item">
                        @include('components.card', [
                         'clickable' => true,
                         'cardImage' => $proj->projectImages->first()->large_image_url ?? '/img/no-image-card-large.gif',
                         'cardLabel' => $proj->translation->name,
                         'cardLink' => $links->projects->route . '/' . $proj->translation->slug,
                        ])
                    </li>
                @endforeach
            @endif
        </ul>

    </div>
</div>