Laravel package for Singapore's open data API https://data.gov.sg and regions, areas, and subzones data
The package vinkas/singapore-laravel
can be installed using composer via Packagist.
composer require vinkas/singapore-laravel
You can simply call the API endpoints by using the Singapore
facade.
use Vinkas\Singapore\Facade as Singapore;
$response = Singapore::api()->weather()->rainfall();
$data = $response->object()->data;
$stations = $data->stations;
$readings = $data->readings;
Also, you can get all the details of Singapore regions, areas, and subzones from the classes below.
Singapore::regions();
Singapore::areas();
Singapore::subzones();