File: D:/HostingSpaces/SBogers10/beerten.komma.nl/resources/views/components/connect.blade.php
@if(!empty($phoneDisplay) || !empty($phoneCall) || !empty($buttonText) || !empty($buttonLink))
<div class="c-connect">
@if(!empty($email))
<a class="c-connect__email" href="mailto:{!! $email !!}">{!! $email !!}</a>
@endif
@if(!empty($email) && !empty($buttonText) && !empty($buttonLink))
<span class="c-connect__or">@lang('global.or')</span>
@endif
@if(!empty($buttonText) && !empty($buttonLink))
<span class="c-connect__action">
@include('components.button', [
'modifiers' => ['icon', 'dark'],
'textButtonText' => $buttonText,
'textButtonLink' => $buttonLink,
])
</span>
@endif
</div>
@endif