@if (!empty($userBs->logo)) logo @endif
    @if (in_array('Ecommerce', $packagePermissions) || in_array('Hotel Booking', $packagePermissions) || in_array('Course Management', $packagePermissions) || in_array('Donation Management', $packagePermissions) ) @guest('customer')
  • {{ $keywords['Login'] ?? __('Login') }}
  • {{ $keywords['Signup'] ?? __('Signup') }}
  • @endguest @auth('customer')
  • {{ $keywords['Dashboard'] ?? __('Dashboard') }}
  • {{ $keywords['Logout'] ?? __('Logout') }}
  • @endauth @endif
    @php $links = json_decode($userMenus, true); @endphp @foreach ($links as $link) @php $href = getUserHref($link); @endphp @if (!array_key_exists('children', $link))
  • {{ $link['text'] }}
  • @else
  • {{ $link['text'] }}
      @foreach ($link['children'] as $level2) @php $l2Href = getUserHref($level2); @endphp
    • {{ $level2['text'] }}
    • @endforeach
  • @endif @endforeach
@csrf
    @if (isset($social_medias)) @foreach ($social_medias as $social_media)
  • @endforeach @endif