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/meuwis/lmbm.be/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 }}</h2>
        @endif

        @include('site.partials.small.pagination7', ['paginator' => $models])

    </div>
</div>