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/blog.blade.php
@foreach($model as $post)
    <div class="l-card-row__item" data-kal="fade" style="--kal-delay: {{($loop->index % 3)*0.1}}s">

        @include('components.actionCard', [
            'modifiers' => ['is-light', 'blog'],
            'actionCardLink' => $links->posts->route.'/'.$post->translation->slug,
            'actionCardImage' => isset($post->images) && $post->images->count() != 0 ? $post->images->first()->small_image_url : '/img/placeholder-card.svg',
            'actionCardTitle' => $post->translation->name,
            'actionCardSubtitle' => $post->date->day .' '. __('calendar.month_names_short.'. ($post->date->format('n') - 1)) .' '. $post->date->year,
            'actionCardDescription' => $post->translation->description,
        ])

    </div>
@endforeach