mostafaabdelbaset / laravel-ip-service
A Laravel package to get the client's country using the ip. A wrapper for http://ip2nation.com
2.0
2020-12-30 20:09 UTC
Requires
- php: >=7.2
- illuminate/support: 5.8.*
This package is auto-updated.
Last update: 2025-03-01 00:34:00 UTC
README
Tries to guess the country code of the client, using his IP.
Installation
Download and import the ip database from ip2nation.com
Usage
$service = App::make('Dimsav\IpService\IpService'); // country code for the given ip address echo $service->getCountryCodeFromIp('123.123.123.123'); // country code for the client's ip address echo $service->getCountryCodeFromClientIp();