@if ($title = $shortcode->title)

{!! BaseHelper::clean($title) !!}

@endif @if ($subtitle = $shortcode->subtitle)

{!! $subtitle !!}

@endif
@if($services->isNotEmpty())
@foreach($services as $service) @php $icon = $service->getMetadata('icon', true); $icon = $icon ?: ($service->category ? ($logo = $service->category->getMetadata('icon', true)) : null) @endphp
@if ($icon)
{{ $service->name }}
@endif

{{ $service->name }}

@if ($description = $service->description)

{!! BaseHelper::clean($description) !!}

@endif
@endforeach
@endif
@if ($shortcode->button_primary_url && $shortcode->button_primary_label) {{ $shortcode->button_primary_label }} @endif @if($shortcode->button_secondary_url && $shortcode->button_secondary_label) {{ $shortcode->button_secondary_label }} @endif