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