cresjie/ip-blocker

Laravel IP address blocker
40 3
Install
composer require cresjie/ip-blocker
Latest Version:v1.2.0.0
PHP:>=5.4.0
License:MIT
Last Updated:Jan 18, 2017
Links: GitHub  ·  Packagist
Maintainer: cresjie

Laravel 5 IP Blocker

Simple and easy to configure laravel ip blocker

for Laravel 4


Installation via Composer

Add this to your composer.json file, in the require object:

 "cresjie/ip-blocker": "v1.2.0.0"

After that, run composer install to install the package.

Add the service provider to app/config/app.php for laravel 4 and config/app.php for laravel 5, within the providers array.

 'providers' => array(
	...
	Cresjie\IpBlocker\IpBlockerServiceProvider::class,
)

Configuration

Publish the default config file to your application so you can make modifications.

$ php artisan vendor:publish

Add your block IP's to the configuration file:

 [L5 root]/config/cresjie/block-ip.php

Handling/Custom View

if the IP was blocked, it would throw Cresjie\IpBlocker\IpBlockerException. you could create a view by just handling the exception like this:

#laravel 5

// app/Exceptions/Handler.php

public function render($request, Exception $e)
{
	switch($e){
		case ($e instanceof \Cresjie\IpBlocker\IpBlockerException):
			return response()->view('view-path');
			break;
		default:
			return parent::render($request, $e);

	}

    return parent::render($request, $e);
}

Related Packages

awescode/ip-firewall

The tool for protection your Laravel 5 website by IP. The system works with dyna...

100 6
pragmarx/firewall

A Laravel IP whitelisting and blacklisting

1,007,926 1,406
sumanion/laravel-cloudflare

Simple way to determine real client IP and country when using CloudFlare

3,145 9
lab404/laravel-auth-checker

Laravel Auth Checker allows you to log users authentication, devices authenticat...

167,642 223
jormin/laravel-ip

解析IP地址,使用 [ipip.net](http://www.ipip.net/) 的服务。

4,262 3