input('mode') == 'following' ? 'following' : 'followers'; $profile = Auth::user()->profile; $following = $followers = []; if($mode == 'following') { $data = $profile->following()->simplePaginate(10); } else { $data = $profile->followers()->simplePaginate(10); } return view('settings.relationships.home', compact('profile', 'mode', 'data')); } }