/**
  * Displays the top list for all servers
  *
  * @return \Illuminate\View\View
  */
 public function all()
 {
     $topListAll = Player::whereRaw('wins + losses >= 200')->orderBy('rating', 'DESC')->paginate(15);
     return view('toplist.all', compact('topListAll'));
 }