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/wingssprayer.komma.pro/resources/views/components/postCard.blade.php
<a class="c-card" href="{{$cardLink}}">


    <div class="c-card__image">
        @if(isset($cardImage))
            <img src="{{$cardImage}}" alt="card image" />
        @endif
    </div>


    <div class="c-card__body">
        @if(!empty($cardTitle))
            <div class="c-card__header">
                <h3 class="c-card__title">{{ $cardTitle }}</h3>
            </div>
        @endif

        <div class="c-card__content">{!! $cardText ?? '' !!}</div>

        @if(!empty($cardLink) && !empty($cardButtonText))
            <div class="c-card__action">
                @include('components.button', [
                    'modifiers' => ['icon', 'green'],
                    'type' => 'text',
                    'tagName' => 'div',
                    'buttonText' => $cardButtonText
                ])
            </div>
        @endif

    </div>

</a>