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/ZelfVerkopen/zelfverkopen.nl/resources/views/site/partials/postsRow.blade.php
<section class="models-overview posts-overview posts-row">
    <div class="grid-row">
        <div class="title">
            @section('post-row-title')
                <div class="title-wrapper">
                    <span class="icon"></span>
                    <h3>
                        @lang('site/global.postsRowTitle')
                    </h3>
                </div>
                <a href="/{{$links->blog->route}}" class="button">
                    @lang('site/global.morePosts')
                    <span class="double-arrow"></span>
                </a>
            @show
        </div>
        <div class="overview">

            @foreach($posts as $post)
                <article>
                    <a href="/{{$links->blog->route}}/{{$post->translation->slug}}">
                        <figure>
                            <div class="placeholder">
                                @if($post->images->count() != 0)
                                    <span style="background-image: url('{{$post->images->first()->medium}}');"></span>
                                @endif
                            </div>
                        </figure>
                        <div class="text">
                            <p>{{$post->translation->name}}</p>
                            <div class="trigger">
                                <div class="meta">
                                    <div class="button">
                                        @lang('site/global.readMore')
                                        <span class="double-arrow"></span>
                                    </div>
                                    <div class="wrapper">
                                        <span class="author-name">{{$post->author->name}}</span>
                                        <span class="date">
                                            {{ $post->getHumanDate() }}
                                        </span>
                                    </div>
                                </div>

                                <figure class="author-image">
                                    @if(isset($post->author->images) && $post->author->images->count() != 0)
                                        <span style="background-image: url('{{$post->author->images->first()->small}}');"></span>
                                    @endif
                                </figure>

                            </div>
                        </div>
                    </a>
                </article>
            @endforeach

        </div>
    </div>
</section>