File: D:/HostingSpaces/ASmits/kemi.nl/resources/views/site/partials/posts/item.blade.php
<a class="c-post-item {{ $postClasses ?? '' }}"
href="/{{$links->{$page->code_name}->route}}/{{$post->translation->slug}}">
@if(isset($post->images) && $post->images->isNotEmpty() )
<figure class="c-post-item__image">
<img alt="{{$post->images->first()->name}}" src="{{ $post->images->first()->medium_image_url }}">
</figure>
@endif
<div class="c-post-item__body">
<h3 class="c-post-item__title">{{ $post->translation->name }}</h3>
<div class="c-post-item__date">{{ $post->date->format('d-m-Y') }}</div>
<span class="c-post-item__button">
Lees meer
</span>
</div>
</a>