@extends('layouts.landing') @section('title') {{tenantSetting($_SERVER['HTTP_HOST'])->network ?? 'Network'}} @endsection @section('content')

{{tenantSetting($_SERVER['HTTP_HOST'])->network ?? 'Network'}}

@if(count($users) > 0) @foreach ($users as $user)
{{$user->first_name}} {{$user->last_name}}
@if(domain($_SERVER['HTTP_HOST'])->company_name == 'Nlsalumni') CTB: {{$user->ctb}} @endif

{{$user->area_of_specialization}}

{{$user->state}} {{$user->country}}
@php $followers = App\Models\Follower::where('user_id', Auth::user()->id)->get(); $user_has_followed = App\Models\Follower::where('followed_user_id', $user->id)->where('user_id', Auth::user()->id)->where('follow_status', 1)->first(); $user_has_unfollowed = App\Models\Follower::where('followed_user_id', $user->id)->where('user_id', Auth::user()->id)->where('follow_status', 0)->first(); $user_has_not_followed = App\Models\Follower::where('user_id', Auth::user()->id)->first(); @endphp @if(count($followers) > 0) @if($user_has_followed) Following
@endforeach @else
No user found
@endif
Search filters
@if(tenantSetting($_SERVER['HTTP_HOST']) !== '') @if(tenantSetting($_SERVER['HTTP_HOST'])->verify_status == 1)
@endif @endif @if(count($locations) > 0)
@endif
@include('elements.ask-question') @include('elements.feeds-script') @endsection