Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 367 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 367 Bytes

GeoIP2 for Laravel

Install

Via Composer

$ composer require csanadnovak/laravel-geoip2
'providers' => array(
    'CsanadNovak\LaravelGeoIP2\GeoIP2ServiceProvider:class',
)
'aliases' => array(
    'GeoIP2' => 'CsanadNovak\LaravelGeoIP2\GeoIP2Facade',
)
$ php artisan config:publish csanadnovak/laravel-geoip2