# Stages
# GET All Stages
use SportmonksFootballApi;
SportmonksFootballApi::stage()->all();
# GET Stages by ID
use SportmonksFootballApi;
SportmonksFootballApi::stage()->byId($stageId);
# GET Stages by Season ID
use SportmonksFootballApi;
SportmonksFootballApi::stage()->bySeasonId($seasonId);
# GET Stages by Search by Name
use SportmonksFootballApi;
SportmonksFootballApi::stage()->searchByName($name);