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

{{ $title }}

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

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

@endif
@if ($leftImage = $shortcode->left_image)
{{ RvMedia::image($leftImage, $shortcode->left_image_link ?: $shortcode->title) }} @if ($leftLink = $shortcode->left_image_link) @endif
@endif
    @foreach ($tabs as $tab) @if ($title = $tab['title'])
  • @if (isset($tab['icon_image']))
    {{ RvMedia::image($tab['icon_image'], $tab['title'] ?: $shortcode->title) }}
    @elseif (isset($tab['icon']))
    @endif
    {{ $title }}
    @if ($description = $tab['description'])

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

    @endif
  • @endif @endforeach
@if ($rightImage = $shortcode->right_image)
{{ RvMedia::image($rightImage, $shortcode->right_image_link ?: $shortcode->title) }} @if ($rightLink = $shortcode->right_image_link) @endif
@endif