@if($shortcode->subtitle)
dots {{ $shortcode->subtitle }}
@endif @if($shortcode->title)

{!! BaseHelper::clean($shortcode->title) !!}

@endif @if($checklist)
    @foreach($checklist as $item)
  • {!! BaseHelper::clean($item) !!}

  • @endforeach
@endif
@if($shortcode->floating_card_image)
{{ RvMedia::image($shortcode->floating_card_image, $shortcode->floating_card_title, attributes: ['class' => 'rounded-3 border border-3 border-white']) }}
@if($shortcode->floating_card_button_label) @php $tag = $shortcode->floating_card_button_url ? 'a' : 'div'; @endphp <{{ $tag }} @if($tag === 'a') href="{{ $shortcode->floating_card_button_url }}" @endif class="d-flex align-items-center bg-white-keep d-inline-flex rounded-pill px-2 py-1" > dots {{ $shortcode->floating_card_button_label }} @endif @if($shortcode->floating_card_title)
{!! BaseHelper::clean(nl2br($shortcode->floating_card_title)) !!}
@endif @if($shortcode->floating_card_description)

{!! BaseHelper::clean($shortcode->floating_card_description) !!}

@endif
@endif @if($features)
@foreach($features as $feature)
@if(! empty($feature['icon_image']))
icon
@elseif($feature['icon']) @endif @if($feature['title'])
{{ $feature['title'] }}
@endif @if($feature['description'])

! $loop->last])> {!! BaseHelper::clean($feature['description']) !!}

@endif
@endforeach
@endif
@if($shortcode->image)
{{ RvMedia::image($shortcode->image, Theme::getSiteTitle(), attributes: ['class' => 'rotate-center']) }}
@endif