<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>