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