File: D:/HostingSpaces/SBogers54/csbinstallatietechniek.nl/resources/views/organisms/headingRow.blade.php
<div class="o-heading-row">
<h2 class="o-heading-row__title">{{$headingRowTitle ?? ''}}</h2>
@if(!empty($headingRowButtonLabel) && !empty($headingRowButtonLink))
<div class="o-heading-row__more">
@include('components.button', [
'type' => 'text',
'modifiers' => ['icon'],
'buttonText' => $headingRowButtonLabel ?? 'Meer info',
'buttonLink' => $headingRowButtonLink ?? '#0',
])
</div>
@endif
</div>