├── LICENSE ├── README.md ├── composer.json ├── config └── ipchecker.php ├── database └── migrations │ └── 2019_11_27_085806_create_ip_lists_table.php ├── doc ├── iplist.PNG ├── json.PNG └── view.PNG ├── resources └── views │ ├── error.blade.php │ └── index.blade.php ├── routes └── web.php └── src ├── Contracts └── IpCheckerInterface.php ├── DBDriver.php ├── FileDriver.php ├── Http ├── Controllers │ └── IpCheckerController.php └── Middleware │ └── IpChecker.php ├── IpCheckerServiceProvider.php ├── IpList.php └── lang ├── en └── messages.php └── tr └── messages.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/composer.json -------------------------------------------------------------------------------- /config/ipchecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/config/ipchecker.php -------------------------------------------------------------------------------- /database/migrations/2019_11_27_085806_create_ip_lists_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/database/migrations/2019_11_27_085806_create_ip_lists_table.php -------------------------------------------------------------------------------- /doc/iplist.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/doc/iplist.PNG -------------------------------------------------------------------------------- /doc/json.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/doc/json.PNG -------------------------------------------------------------------------------- /doc/view.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/doc/view.PNG -------------------------------------------------------------------------------- /resources/views/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/resources/views/error.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Contracts/IpCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/Contracts/IpCheckerInterface.php -------------------------------------------------------------------------------- /src/DBDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/DBDriver.php -------------------------------------------------------------------------------- /src/FileDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/FileDriver.php -------------------------------------------------------------------------------- /src/Http/Controllers/IpCheckerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/Http/Controllers/IpCheckerController.php -------------------------------------------------------------------------------- /src/Http/Middleware/IpChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/Http/Middleware/IpChecker.php -------------------------------------------------------------------------------- /src/IpCheckerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/IpCheckerServiceProvider.php -------------------------------------------------------------------------------- /src/IpList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/IpList.php -------------------------------------------------------------------------------- /src/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/lang/en/messages.php -------------------------------------------------------------------------------- /src/lang/tr/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HayriCan/laravel-ip-checker/HEAD/src/lang/tr/messages.php --------------------------------------------------------------------------------