File: D:/HostingSpaces/sdo/sdoschoonmaak.nl/resources/views/site/partials/overviews/list.blade.php
<div class="list-row index-grid-row">
<div class="grid-row">
@if(isset($title) && $title != '')
<h1>{{$title}}</h1>
@endif
@if( $models->count() != 0)
<section class="list">
@foreach($models as $model)
@continue(!$model->translation)
<article id="model-{{$loop->index}}">
<a href="/@if(isset($modelTypeRoute)){{$modelTypeRoute}}/@endif{{$model->translation->slug}}">
@if(isset($model->date))
<div class="date">
{{$model->date->format('d')}}<br/>
{{$model->date->format('m')}}
</div>
@endif
@if(isset($model->images) && $model->images->count() != 0)
<figure>
<img src="{{ $model->images->first()->small_image_url }}"/>
</figure>
@endif
<div class="content @if(isset($model->images) && $model->images->count() != 0) with-image @endif ">
<h2>
{{ $model->translation->name }}
</h2>
<span class="read-more">
@lang('site/global.readMore')
<span class="arrow">@include('site.svg.arrow')</span>
</span>
</div>
</a>
</article>
@endforeach
</section>
@else
<h2 class="no-available">{{ $noAvailableMessage or __('site/global.noAvailable') }}</h2>
@endif
@include('site.partials.small.pagination7', ['paginator' => $models])
</div>
</div>