@php
$selectedSectionId = session('selected_section_id') ?? ($current_section_id ?? null);
$dynamicItemTypeTabs = \App\Helpers\Helper::getSectionItemTypeTabs($selectedSectionId);
@endphp
@if($dynamicItemTypeTabs->count())
@foreach($dynamicItemTypeTabs as $idx => $tab)
@php
$safeItemTypeId = $tab->item_type_id === 'default' ? 'default' : $tab->item_type_id;
$paneId = 'itemtype-'.$safeItemTypeId.'-pane';
@endphp
@endforeach
@else
@endif