robbens/laravel-redirect is a Laravel package.
It currently has 0 GitHub stars and 1.435 downloads on Packagist (latest version 0.6.1).
Install it with composer require robbens/laravel-redirect.
Discover more Laravel packages by robbens
or browse all Laravel packages to compare alternatives.
Last updated
Create redirects with ease from ex. /about to /about-us.
Install the package via composer:
composer require robbens/laravel-redirect
Publish migrations
php artisan vendor:publish --provider="Robbens\LaravelRedirect\LaravelRedirectServiceProvider" --tag="migrations"
Run migrations
php artisan migrate
Robbens\LaravelRedirect\Models\Redirect::create([
'from' => '/foo/bar',
'to' => '/foo/baz',
]);
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.