@if (!empty($websiteInfo->logo)) logo @endif
@if (!empty($websiteInfo->logo)) Logo @endif
    @php $menuDatas = json_decode($menuInfos); @endphp @foreach ($menuDatas as $menuData) @php $href = get_href($menuData); @endphp @if (!property_exists($menuData, 'children'))
  • {{ $menuData->text }}
  • @else
  • {{ $menuData->text }}
      @php $childMenuDatas = $menuData->children; @endphp @foreach ($childMenuDatas as $childMenuData) @php $child_href = get_href($childMenuData); @endphp
    • {{ $childMenuData->text }}
    • @endforeach
  • @endif @endforeach
    @if (!Auth::guard('web')->check())
  • {{ __('Login') }}
  • {{ __('Signup') }}
  • @else
  • {{ __('Dashboard') }}
  • {{ __('Logout') }}
  • @endif
    @if (!Auth::guard('vendor')->check())
  • {{ __('Login') }}
  • {{ __('Signup') }}
  • @else
  • {{ __('Dashboard') }}
  • {{ __('Logout') }}
  • @endif