@if($bgImage1 = $shortcode->background_image_1)
{{ __('Background image 1') }}
@endif @if ($bgImage2 = $shortcode->background_image_2)
{{ __('Background image 2') }}
@endif
@if ($subtitle = $shortcode->subtitle)
{!! BaseHelper::clean($subtitle) !!}
@endif @if ($title = $shortcode->title)

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

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

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

@endif
@foreach($tabs as $tab)
@if ($tab['title'])

{!! BaseHelper::clean($tab['title']) !!}

@endif @if ($tab['description'])

{!! BaseHelper::clean($tab['description']) !!}

@endif @if ($tab['duration'])
{!! BaseHelper::clean($tab['duration']) !!}
@endif @if ($tab['price'])

{!! BaseHelper::clean($tab['price']) !!}

@endif
@if ($tab['feature_list']) @php $featureList = explode(',', $tab['feature_list']) @endphp @if(count($featureList) > 0)
    @foreach($featureList as $feature)
  • {!! BaseHelper::clean($feature) !!}
  • @endforeach
@endif @endif @if ($tab['button_label'] && $tab['button_url']) @endif
@endforeach