class LeaderboardController < ApplicationController def index @players = Player.where(main_player_id: nil).order(purse: :desc) end end