@if ($bgImage = $shortcode->background_image)
{{ RvMedia::image($bgImage, $shortcode->title, attributes: ['data-aos' => 'fade-left', 'data-aos-delay' => '200']) }}
@endif
@if ($subtitle = $shortcode->subtitle) {!! BaseHelper::clean($subtitle) !!} @endif @if ($title = $shortcode->title)

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

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

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

@endif
@if ($packages->isNotEmpty())
{{ __('Monthly') }} {{ __('Yearly') }}
@foreach ($packages as $package)
@if ($package->is_popular) {{ __('Popular') }} @endif

{{ $package->name }}

{{ $package->price }}/{{ __('month') }}

{{ $package->annual_price }}/{{ __('year') }}

    @foreach ($package->feature_list as $feature)
  • @if ($feature['is_available']) @else @endif {{ $feature['value'] }}
  • @endforeach
@if ( ($actionLabel = $package->action_label) && ($actionUrl = $package->action_url)) @endif
@endforeach
@endif