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/SBogers47/ehbocranendonck.nl/app/views/layouts/partials/home/news.blade.php
<div class="news-block content">

    <h4>{{ $title }}</h4>

    @foreach($posts as $key => $post)
        <article class="post">
            <a href="/{{$post->translation->route->route}}">
                <div class="date">
                    {{$post->date->format('d')}}<br/>
                    {{$post->date->format('m')}}
                </div>

                <p>
                    {{ $post->translation->name }}
                </p>

                <span class="arrow">
                    @include('svg.arrow')
                </span>
            </a>
        </article>
    @endforeach

</div>