@if(! empty($tabs))
@if($shortcode->title || $shortcode->subtitle)
@if($shortcode->title)

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

@endif @if($shortcode->subtitle) {!! BaseHelper::clean(nl2br($shortcode->subtitle)) !!} @endif
@endif
@foreach($tabs as $tab)
{{ RvMedia::image($tab['image'], $tab['name'], 'thumb') }}
@php preg_match('/(\d+)(\D+)/', $tab['level'], $matches); $number = $matches[1] ?? 0; $unit = $matches[2] ?? ''; @endphp

{{ $unit }}

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

@endforeach
@if($shortcode->extra_content)

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

@endif
@endif