File: D:/HostingSpaces/slenders/slenders.nl/resources/views/site/components/textButton.blade.php
@php
$isButton = isset($isButton) && $isButton == true ? true : false;
$elem = $isButton ? 'button' : 'a';
@endphp
<{{$elem}} class="c-text-button @modifiers('c-text-button') @if(isset($textButtonLink) && \Str::startsWith($textButtonLink, ['#'])) js-scroll-to-target @endif" @if(!$isButton) href="{{ $textButtonLink ?? '/' }}" @if(isset($textButtonLink) && \Str::startsWith($textButtonLink, ['http://', 'https://'])) target="_blank" @endif @endif>
<span class="c-text-button__text">{{ $textButtonText ?? 'textButtonText' }}</span>
<i class="c-text-button__icon">@include('site.components.icons.arrowhead')</i>
</{{$elem}}>