# Standings

# GET All Standings

use SportmonksFootballApi;

SportmonksFootballApi::standing()->all();

# GET Standing by Season ID

use SportmonksFootballApi;

SportmonksFootballApi::standing()->bySeasonId($seasonId);

# GET Standings by Round ID

use SportmonksFootballApi;

SportmonksFootballApi::standing()->byRoundId($roundId);

# GET Standing Correction by Season ID

use SportmonksFootballApi;

SportmonksFootballApi::standing()->standingCorrectionBySeasonId($seasonId);

# Get Live Standings by League ID

use SportmonksFootballApi;

SportmonksFootballApi::standing()->liveStandingsByLeagueId($leagueId);