File: D:/HostingSpaces/SBogers95/rentman.io/resources/views/site/components/buttonLink.blade.php
<a class="c-button @modifiers('c-button')
@if(isset($buttonLink) && str_contains($buttonLink, '?bookdemo=en')) js-trigger-demo-chat @endif
@if(isset($buttonLink) && starts_with($buttonLink, ['#'])) scroll-to-target @endif "
href="{{ $buttonLink or '/' }}"
@if( isset($buttonLink) &&
!(str_contains($buttonLink, 'rentmanapp.com')) &&
starts_with($buttonLink, ['http://', 'https://']) &&
(!isset($preventBlank) || $preventBlank == false))
target="_blank" rel=""
@endif>
<span class="c-button__text">{{ $buttonText or config('atomic.buttonText') }}</span>
<i class="c-button__icon">
@if(!isset($iconOverrule))
@include('site.components.icons.arrow')
@else
@include('site.components.icons.'.$iconOverrule)
@endif
</i>
</a>