@if (!empty($websiteInfo->logo)) Brand logo @endif
Brand Logo
@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 $childMenusDatas = $menuData->children @endphp @foreach ($childMenusDatas as $childMenusData) @php $href = get_href($childMenusData); @endphp
    • {{ $childMenusData->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