/laravel-geoip2

GeoIP2 for Laravel 5.2

Primary LanguagePHPMIT LicenseMIT

GeoIP2 for Laravel 5.2

Install

Via Composer

$ composer require acidreign/laravel-geoip2
'providers' => array(
    Acidreign\LaravelGeoIP2\GeoIP2ServiceProvider::class,
)
'aliases' => array(
    'GeoIP2' => Acidreign\LaravelGeoIP2\GeoIP2Facade::class,
)
$ php artisan vendor:publish --provider="Acidreign\LaravelGeoIP2\GeoIP2ServiceProvider"