HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/werkenbijanvil.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'))
                <h2 class="o-callout-bar__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' => App\Buttons\Models\Button::where('id', config('site.global_CTA_button_id'))->with('translations')->first()->translation->label ?? ($servicePointButton->translation->label ?? null),
                    'buttonLink' => App\Buttons\Models\Button::where('id', config('site.global_CTA_button_id'))->with('translations')->first()->translation->url ?? ($servicePointButton->translation->url ?? null),
                ])
            </div>

        </div>
    </div>
@endif