@if ($subtitle = $shortcode->subtitle)
infinia {!! BaseHelper::clean($subtitle) !!}
@endif @if ($title = $shortcode->title)

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

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

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

@endif
@if ($backgroundImage = $shortcode->background_image)
{{ RvMedia::image($backgroundImage) }}
@endif
@foreach($tabs as $tab) @continue(! $tabTitle = Arr::get($tab, 'title')) @php $iconImage = Arr::get($tab, 'icon_image'); $icon = Arr::get($tab, 'icon'); @endphp
@if($iconImage || $icon)
@if ($iconImage) {{ RvMedia::image($iconImage) }} @else @endif
@endif
{!! BaseHelper::clean($tabTitle) !!}
@if ($tabDescription = Arr::get($tab, 'description'))

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

@endif
@endforeach
@if (count($tabs) == 3) @elseif(count($tabs) < 3 && count($tabs) > 1) @endif @php $bottomDescription = $shortcode->bottom_description; $actionLabel = $shortcode->action_label; $actionUrl = $shortcode->action_url; @endphp @if($bottomDescription || ($actionLabel && $actionUrl))
@if(($actionLabel && $actionUrl))

@if($bottomDescription) {!! BaseHelper::clean($bottomDescription) !!} @endif {!! BaseHelper::clean($actionLabel) !!}

@else

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

@endif
@endif