@if(empty($tab['sections']))
@lang('plan.overview.empty')
@else @foreach($tab['sections'] as $section)
{{ $section['label'] }} @if(empty($section['_available'])) @endif
@if(empty($section['_available']))
{{ $section['locked_message'] ?? trans('plan.common.not_available') }}
@elseif(!empty($section['view']) && view()->exists($section['view'])) @include($section['view'], [ 'section' => $section, 'user' => $user, 'package' => $package ?? null, 'limits' => $limits ?? null, ]) @endif
@endforeach @endif
@lang('plan.common.contact_admin')