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/SBogers10/komma.pro/resources/views/site/partials/cases/featuredCase.blade.php
<div class="featured-case {{ $case->key }} flex-col {{ $class or '' }}">
    <a href="/cases/{{ $case->translation->slug }}">
        <img class="stretch preload" src="{{ $case->thumbnail }}" alt="{!! $case->translation->name !!}"/>

        <div class="color-overlay" style="background-color: {{ $case->primary_color }};"></div>

        {{-- Flex container to center the content --}}
        <div class="text-overlay">

            {{-- Flex item with title and tags --}}
            <div class="description">

                <span class="title">{!! $case->translation->name !!}</span>

                @include('site.partials.cases.caseTags',[
                    'tags'=> Lang::get('site/cases/' . $case->key . '.tags')
                ])

                <div class="read-more">
                    <span class="read-more__label">Lees meer</span>
                    <span class="arrow"></span>
                </div>

            </div>
        </div>
    </a>
</div>