van-ons/filament-redirects

A Filament package to manage redirects in your application.

Maintainers

Package info

github.com/VanOns/filament-redirects

pkg:composer/van-ons/filament-redirects

Transparency log

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

v2.1.3 2026-07-31 14:42 UTC

README

Social card of Filament Redirects

Filament Redirects

Latest version on GitHub Total downloads GitHub issues License Plumb score

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.

Logo of Van Ons