laravel-road/ibge-locations

Laravel 客户端用于消费 IBGE Locations API

v0.2.1 2021-01-11 21:13 UTC

This package is auto-updated.

Last update: 2024-09-12 08:40:24 UTC


README

安装

composer require laravel-road/ibge-locations

php artisan ibge-locations:install // optional, but necessary to use the db driver

如何使用

$states = Locations::getStates();

$cities = Locations::getStates($states->first()->initials);

支持的驱动程序

  • api(默认)
  • db

环境