A Laravel countries list package
Via Composer
composer require dcblogdev/laravel-countries
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:
'providers' => [
// ...
Dcblogdev\Countries\CountriesServiceProvider::class,
];In a controller import the class:
use Dcblogdev\Countries\Facades\Countries;In a view or closure call the facade:
This will return an object of countries
Countries::all();Please see the changelog for more information on what has changed recently.
Contributions are welcome and will be fully credited.
Contributions are accepted via Pull Requests on Github.
-
Document any change in behaviour - Make sure the
readme.mdand any other relevant documentation are kept up-to-date. -
Consider our release cycle - We try to follow SemVer v2.0.0. Randomly breaking public APIs is not an option.
-
One pull request per feature - If you want to do more than one thing, send multiple pull requests.
If you discover any security related issues, please email dave@daveismyname.com email instead of using the issue tracker.
license. Please see the license file for more information.