# Coaches

# GET All Coaches

use SportmonksFootballApi;

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

# GET Coaches by ID

use SportmonksFootballApi;

SportmonksFootballApi::coach()->byId($id);

# GET Coaches by Country ID

use SportmonksFootballApi;

SportmonksFootballApi::coach()->byCountryId($countryId);

# GET Coaches Search by Name

use SportmonksFootballApi;

SportmonksFootballApi::coach()->searchByName($name);

# GET Last Updated Coaches

use SportmonksFootballApi;

SportmonksFootballApi::coach()->lastUpdated();