File: D:/HostingSpaces/SBogers10/stafa.komma.pro/resources/views/site/organisms/newscard.blade.php
<a class="c-newscard" href="{{$parentRoute}}/{{$model->translation->slug}}" aria-label="{{$model->translation->name}}">
<article class="c-newscard__frame">
<div class="c-newscard__content">
<time class="c-newscard__date" datetime="{{ $model->date->format('Y-m-d') }}">
{{ $model->date->day }} @lang('calendar.month_names_short.' . ($model->date->month - 1)) {{$model->date->year}}
</time>
<h2 class="c-newscard__title">{{ $model->translation->name }}</h2>
<p class="c-newscard__intro">{{ $model->translation->meta_description }}</p>
<div class="c-newscard__more">
@include('site.components.button', [
'buttonText' => __('site/posts.buttonLabel'),
'buttonLink' => '',
'modifiers' => ['icon'],
'tagName' => 'div'
])
</div>
</div>
@if(isset($model->images) && $model->images->count() != 0)
<img class="c-newscard__image" src="{{ $model->images->first()->thumb_image_url }}" alt="{{$model->images->first()->name}}"/>
@else
<div class="c-newscard__image"></div>
@endif
</article>
</a>