studiocreativateam / ip-blocker-laravel
IP Blocker Laravel (https://studio-creativa.pl)
0.1.0
2022-02-11 19:31 UTC
Requires
- php: ^7.4|^8.0
This package is auto-updated.
Last update: 2024-12-12 14:00:28 UTC
README
Block routes by IP
Requirements
Laravel 7.x and 8.x
Installation
1) To install through composer, run the following command from terminal:
$ composer require studiocreativateam/ip-blocker-laravel
2) Publish the config file:
Run the following command to publish the package config file:
$ php artisan ip-blocker:publish
$ php artisan migrate
3) Enable the interception of attempts to find pages that do not exist to report to IP Blocker by making the following change to your: App/Exceptions/Handler.php
public function render($request, Throwable $e)
{
if (app()->bound('ip-blocker')) {
app('ip-blocker')->render($request, $e);
}
return parent::render($request, $e);
}