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/SBogers33/broosensterck.nl/app/views/layouts/partials/posts/latestPosts.blade.php
<nav class="sub-menu latest-posts">

    <p>
        {{ KommaLang::get('latestPosts') }}
    </p>

    <ul>

        <li>
            <a href="/{{$links->news->route}}">
                <p>@lang('translations.overview')</p>
                <span class="arrow">@include('svg.arrow')</span>
            </a>
        </li>

        @foreach($posts as $latestPostItem)

            <li @if($post->id == $latestPostItem->id) class="active" @endif>
                <a href="/{{$latestPostItem->translation->route->route}}">
                    <p>{{$latestPostItem->translation->name}}</p>
                    <span class="arrow">@include('svg.arrow')</span>
                </a>
            </li>

        @endforeach

    </ul>

</nav>