van-ons / filament-redirects
A Filament package to manage redirects in your application.
Requires
- php: ^8.2
- filament/filament: ^4.0|^5.0
- illuminate/contracts: ^11.0|^12.0|^13.0
- illuminate/support: ^11.0|^12.0|^13.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.94
- larastan/larastan: ^3.10
- orchestra/testbench: ^9.0|^10.0|^11.0
- pestphp/pest: ^3.0|^4.0
- pestphp/pest-plugin-laravel: ^3.0|^4.0
- phpstan/phpstan: ^2.1
This package is auto-updated.
Last update: 2026-07-31 14:45:46 UTC
README
Filament Redirects
A Filament package to manage redirects in your application.
Quick start
For Filament version compatibility, see Compatibility.
Installation
Start by installing the package via Composer:
composer require van-ons/filament-redirects:^2.0
Next, publish and run the migrations:
php artisan vendor:publish --tag=vanons-filament-redirects-migrations php artisan migrate
Finally, add the plugin to your Filament panel provider:
use Filament\Panel; use Filament\PanelProvider; use VanOns\FilamentRedirects\RedirectsPlugin; class AdminPanelProvider extends PanelProvider { public function panel(Panel $panel): Panel { return $panel->plugin(RedirectsPlugin::make()); } }
Documentation
Please see the documentation for detailed information about installation and usage.
Contributing
Please see Contributing for more information about how you can contribute.
Testing
composer test
Changelog
Please see Changelog for more information about what has changed recently.
Upgrading
Please see Upgrading for more information about how to upgrade.
Security
Please see Security for more information about how we deal with security.
Credits
We would like to thank the following contributors for their contributions to this project:
License
The scripts and documentation in this project are released under the MIT License.
