LaravelPackages.net
Acme Inc.
Toggle sidebar
nbz4live/laravel-geoip2

Laravel wrapper for MaxMind GeoIP2

1.208
3
1.0.5
About nbz4live/laravel-geoip2

nbz4live/laravel-geoip2 is a Laravel package for laravel wrapper for maxmind geoip2. It currently has 3 GitHub stars and 1.208 downloads on Packagist (latest version 1.0.5). Install it with composer require nbz4live/laravel-geoip2. Discover more Laravel packages by nbz4live or browse all Laravel packages to compare alternatives.

Last updated

GeoIP2 for Laravel 5.4+

Installation

  1. In order to install run the following composer command:
composer require nbz4live/laravel-geoip2
Laravel 5.5+ Install skip to step 4.
  1. Open your config/app.php and add the following to the providers array:
Nbz4live\LaravelGeoIP2\ServiceProvider::class,
  1. In the same config/app.php and add the following to the aliases array:
'GeoIP2' => Nbz4live\LaravelGeoIP2\Facades\GeoIP2::class,
  1. You can publish the config file by running (optional):
$ php artisan vendor:publish --provider="Nbz4live\LaravelGeoIP2\ServiceProvider"
  1. Run the update command to download the latest required databases
$ php artisan geoip:update
Comments