foreach ($users as $item){ $follow = Follow::where('follower_id', Auth::user()->id)->where('following_id', $item->id)->count(); $item['follow_count'] = $follow; }
foreach ($users as $item){
$follow = Follow::where('follower_id', Auth::user()->id)->where('following_id', $item->id)->count();
$item['follow_count'] = $follow;
}