omatech/redireccio-laravel is a Laravel package.
It currently has 2 GitHub stars and 89 downloads on Packagist.
Install it with composer require omatech/redireccio-laravel.
Discover more Laravel packages by omatech
or browse all Laravel packages to compare alternatives.
Last updated
composer require omatech/redireccio-laravel
php artisan vendor:publish
select -> Provider: Omatech\RedireccIO\Laravel\RedireccIOServiceProvider
config/redireccio.php -> token
app/Exceptions/Handler.php en report()
if($exception instanceof NotFoundHttpException) {
$url = request()->fullUrl();
$method = request()->method();
app()->make('RedireccIO')->intercept($url, $method);
}
parent::report($exception);