littio/laravel-geoip2

Laravel wrapper for MaxMind GeoIP2

v1.1.2 2016-07-07 19:14 UTC

This package is not auto-updated.

Last update: 2024-04-17 18:11:39 UTC


README

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"