@if ($shortcode->title)
{!! BaseHelper::clean($shortcode->title) !!}
@endif
@foreach ($tabs as $key => $tab)
$loop->first]) id="{{ Str::slug($tab['title'], '-') }}" role="tabpanel" >
{{ $loop->iteration }}. {{ $tab['title'] }}

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

@if (isset($tab['list']) && !empty($tab['list']))
    @foreach ($tab['list'] as $listItem)
  • {{ $listItem }}
  • @endforeach
@endif
@endforeach