# Match Facts (beta)
# GET All Available Match Facts
use SportmonksFootballApi;
SportmonksFootballApi::matchFact()->all();
# GET Match Facts by Fixture ID
use SportmonksFootballApi;
SportmonksFootballApi::matchFact()->byFixtureId($fixtureId);
# GET Match Facts by Date Range
use SportmonksFootballApi;
SportmonksFootballApi::matchFact()->byDateRange('2022-12-28', '2022-12-31');
# GET Match Facts by League ID
use SportmonksFootballApi;
SportmonksFootballApi::matchFact()->byLeagueId($leagueId);