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/SBogers26/gripp.nu/app/views/posts/recentNews.blade.php
<div class="recent-news">
    <div class="blue-header">
        <h4>Recent nieuws</h4>
    </div>
    <ul class="posts">
        @foreach($posts as $post)
            <li @if(!isset($data->content) && $post->id == $data->id) class="active" @endif>
                <a href="/{{$post->translation->route->route}}">
                    <p class="date">
                        {{$post->date->format('d . M . Y')}}
                    </p>
                    <p class="title">
                        {{$post->translation->title}}
                    </p>
                </a>
            </li>
        @endforeach
    </ul>
</div>