File: D:/HostingSpaces/SBogers10/eleo.komma.nl/resources/views/organisms/calloutBar.blade.php
@if(!empty($servicePointHeading))
<div class="o-callout-bar">
<div class="o-callout-bar__main">
@if(config('site.global_CTA_heading') || !empty($page->servicepoint_heading))
<h2 class="o-callout-bar__heading">
{!! !empty($page->servicepoint_heading) ? $page->servicepoint_heading : config('site.global_CTA_heading') !!}
</h2>
@endif
<div class="o-callout-bar__body">
@include('components.connect', [
'phoneDisplay' => $servicePoint->translation->telephone_label ?? null,
'phoneCall' => $servicePoint->translation->telephone_url ?? null,
'buttonText' => $servicePointButton->translation->label ?? null,
'buttonLink' => $servicePointButton->translation->url ?? null,
])
</div>
</div>
</div>
@endif