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/SBogers54/csbinstallatietechniek.nl/resources/views/components/card.blade.php
@php
    $isCardClickable = isset($clickable) && $clickable == true ? true : false;
    $elem = $isCardClickable ? 'a' : 'div';
@endphp


<{{$elem}} class="c-card  @modifiers('c-card')" @if($isCardClickable) href="{{$cardLink}}" @endif>

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

    @if(!empty($cardLabel))
        <div class="c-card__label">
            <span class="c-card__icon">@include('components.icons.arrowheadRight')</span>
            <span class="c-card__text">{{$cardLabel}}</span>
        </div>
    @endif

</{{$elem}}>