@if (isset($user))
{{ t('My Account') }} 
  • {{ t('Personal Home') }}
@if (!empty($user->user_type_id) and $user->user_type_id != 0)
{{ t('My Ads') }} 
    @if (in_array($user->user_type_id, [1, 2]))
  • {{ t('My companies') }}  {{ isset($countCompanies) ? $countCompanies : 0 }}
  • {{ t('My ads') }}  {{ isset($countMyPosts) ? $countMyPosts : 0 }}
  • {{ t('Pending approval') }}  {{ isset($countPendingPosts) ? $countPendingPosts : 0 }}
  • {{ t('Archived ads') }}  {{ isset($countArchivedPosts) ? $countArchivedPosts : 0 }}
  • {{ t('Conversations') }}  {{ isset($countConversations) ? $countConversations : 0 }}
  • {{ t('Transactions') }}  {{ isset($countTransactions) ? $countTransactions : 0 }}
  • @endif @if (in_array($user->user_type_id, [1, 3]))
  • {{ t('My resumes') }}  {{ isset($countResumes) ? $countResumes : 0 }}
  • {{ t('Favourite jobs') }}  {{ isset($countFavouritePosts) ? $countFavouritePosts : 0 }}
  • {{ t('Saved searches') }}  {{ isset($countSavedSearch) ? $countSavedSearch : 0 }}
  • @if (in_array($user->user_type_id, [3]))
  • {{ t('Conversations') }}  {{ isset($countConversations) ? $countConversations : 0 }}
  • @endif @endif
{{ t('Terminate Account') }} 
  • {{ t('Close account') }}
@endif @endif