@php $style = 'style-1'; if (in_array($shortcode->style, ['style-2'])) { $style = $shortcode->style; } $container = 'col-xl-12 col-lg-12'; $col = 'col-xl-3 col-lg-6 col-md-6'; switch (count($tabs)) { case 1: $container = 'col-xl-4 col-lg-6'; $col = 'col-12'; break; case 2: $container = 'col-xl-6 col-lg-8'; $col = 'col-lg-6 col-md-6'; break; case 3: $container = 'col-xl-10 col-lg-12'; $col = 'col-lg-4 col-md-6'; break; } @endphp

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

{{ __('Billed Monthly') }} {{ __('Bill Annually') }}
@foreach ($tabs as $tab)
{{ Arr::get($tab, 'month_price') }} {{ Arr::get($tab, 'year_price') }} /{{ __('month') }} /{{ __('year') }}

{!! BaseHelper::clean(Arr::get($tab, 'title')) !!}

{!! BaseHelper::clean(Arr::get($tab, 'subtitle')) !!}

    @foreach (Arr::get($tab, 'checked', []) as $item)
  • {{ $item }}
  • @endforeach @foreach (Arr::get($tab, 'uncheck', []) as $item)
  • {{ $item }}
  • @endforeach
@if (Arr::get($tab, 'link')) @endif
@endforeach