@if ($subtitle = $shortcode->subtitle)
{!! BaseHelper::clean($subtitle) !!}
@endif
@if ($title = $shortcode->title)
{!! BaseHelper::clean($title) !!}
@endif
@foreach($features as $feature)
@php
$icon = Arr::get($feature, 'icon');
$iconImage = Arr::get($feature, 'icon_image');
@endphp
@continue(! $featureTitle = Arr::get($feature, 'title'))
@if ($icon || $iconImage)
@if($iconImage)
{{ RvMedia::image($iconImage, $featureTitle) }}
@else
@endif
@endif
{!! BaseHelper::clean($featureTitle) !!}
@if ($featureDescription = Arr::get($feature, 'description'))
{!! BaseHelper::clean($featureDescription) !!}
@endif
@endforeach
@if ($image = $shortcode->image)
{{ RvMedia::image($image, __('Image')) }}
@endif
@if ($image1 = $shortcode->image_1)
{{ RvMedia::image($image1, __('Image'), attributes: ['class' => 'rounded-3']) }}
@endif