vcarreira / country-list
方便访问umpirsky包提供的本地化国家列表
1.0
2016-11-06 15:29 UTC
Requires
- php: >= 5.5.9
- illuminate/support: ~5.1
- umpirsky/country-list: ^2.0
This package is not auto-updated.
Last update: 2024-09-14 19:20:19 UTC
README
A simple Laravel 5 service provider for the umpirsky/country-list localized countries arrays.
安装
将以下行添加到composer.json的require部分
{
"require": {
"vcarreira/country-list": "~1.0"
}
}
设置
在/config/app.php中,添加以下内容到providers
CountryList\CountryListServiceProvider::class,
并以下内容添加到aliases
'CountryList' => CountryList\Facades\CountryListFacade::class,
用法
要在您的应用程序中使用该服务,您需要从Laravel IoC Container检索它。以下示例使用app助手检索葡萄牙语国家列表。
$countries = app('countrylist')->all('pt_PT');
如果外观在应用程序配置的aliases部分中注册,您还可以使用以下代码
$countries = CountryList::all('pt_PT');