   @foreach ($menu as $item)
                     <li class="nav-item{{ $item->children->isNotEmpty() ? ' dropdown' : '' }}">
                         <a class="nav-link{{ $item->children->isNotEmpty() ? ' dropdown-toggle' : '' }}{{ $item->isActive() ? ' active' : '' }}{{ $item->isDisabled() ? ' disabled' : '' }} fs-7"
                             href="{{ $item->getUrl() }}"
                             @if ($item->target) target="{{ $item->target }}" @endif
                             @if ($item->children->isNotEmpty()) id="navbarDropdown{{ $item->id }}"
                                                            role="button"
                                                            data-bs-toggle="dropdown"
                                                            aria-expanded="false" @endif
                             @if ($item->isActive()) aria-current="page" @endif
                             @if ($item->isDisabled()) tabindex="-1" aria-disabled="true" @endif>
                             {{ $item->getLocalizedTitle() }}
                         </a>
                         @if ($item->children->isNotEmpty())
                             <ul class="dropdown-menu iscustom is-drp-menu"
                                 aria-labelledby="navbarDropdown{{ $item->id }}">
                                 @foreach ($item->children as $child)
                                     @if ($child->isDivider())
                                         <li>
                                             <hr class="dropdown-divider">
                                         </li>
                                     @else
                                         <li class="menu-nmic-list-item {{ $child->icons ? 'has-nav-icons' : '' }}  ">
                                             <a class="dropdown-item d-flex {{ $child->icons ? 'align-items-center justify-content-center' : '' }} p-2 {{ $child->isActive() ? ' active' : '' }}{{ $child->isDisabled() ? ' disabled' : '' }}"
                                                 href="{{ $child->getUrl() }}"
                                                 @if ($child->target) target="{{ $child->target }}" @endif
                                                 @if ($child->isDisabled()) tabindex="-1" aria-disabled="true" @endif>
                                                 @if ($child->icons)
                                                     <span
                                                         class="link-image d-flex flex-grow-1 align-items-center justify-content-center rounded-circle"
                                                         style="width:81px;">
                                                         <i class="{{ $child->icons }} fs-4"></i>
                                                     </span>
                                                 @endif
                                                 <div class="product-link-content  d-flex flex-column gap-1">
                                                     <span class="fs-7 fwc-600 text-dark">
                                                         {{ $child->getLocalizedTitle() }}</span>
                                                     @unless (empty($child->getLocalizedSummary()))
                                                         <span class="fsc-8">{{ $child->getLocalizedSummary() }}</span>
                                                     @endunless

                                                 </div>

                                             </a>
                                         </li>
                                     @endif
                                 @endforeach
                             </ul>
                         @endif
                     </li>
                 @endforeach
