PHPackages                             novius/laravel-filament-redirect-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. novius/laravel-filament-redirect-manager

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

novius/laravel-filament-redirect-manager
========================================

This package provides an interface to manage redirects with Filament in Laravel applications.

1.0.3(1mo ago)2328↓35%AGPL-3.0-or-laterPHPPHP &gt;=8.2.0CI passing

Since Sep 19Pushed 1mo agoCompare

[ Source](https://github.com/novius/laravel-filament-redirect-manager)[ Packagist](https://packagist.org/packages/novius/laravel-filament-redirect-manager)[ RSS](/packages/novius-laravel-filament-redirect-manager/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (4)Dependencies (16)Versions (6)Used By (0)

Laravel Filament Redirect Manager
=================================

[](#laravel-filament-redirect-manager)

[![Packagist Release](https://camo.githubusercontent.com/991d4a26470beadcf4cab5faa5cc97b5c83bc4f4ed8a3404e489047a45735195/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f766975732f6c61726176656c2d66696c616d656e742d72656469726563742d6d616e616765722e7376673f6d61784167653d31383030267374796c653d666c61742d737175617265)](https://packagist.org/packages/novius/laravel-filament-redirect-manager)[![License: AGPL v3](https://camo.githubusercontent.com/c61341f63648cdd5aba4f7a073b513106a63778c27b15f96c56157642bc943b4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4147504c25323076332d626c75652e737667)](http://www.gnu.org/licenses/agpl-3.0)

Introduction
------------

[](#introduction)

This package provides an interface to manage redirects with [Laravel Filament Redirect Manager](https://github.com/novius/laravel-filament-redirect-manager) in [Laravel Filament](https://filamentphp.com/).

Requirements
------------

[](#requirements)

- Laravel Filament &gt;= 4
- Laravel &gt;= 11.0
- PHP &gt;= 8.2

Installation
------------

[](#installation)

### Composer

[](#composer)

Install the package via composer:

```
composer require novius/laravel-filament-redirect-manager
```

### Middleware

[](#middleware)

Next, prepend/append the Spatie\\MissingPageRedirector\\RedirectsMissingPages middleware to your global middleware stack:

```
// bootstrap/app.php
->withMiddleware(function (Middleware $middleware) {
    $middleware->append([
        \Spatie\MissingPageRedirector\RedirectsMissingPages::class,
    ]);
})
```

### Filament plugin

[](#filament-plugin)

Add the `LaravelFilamentRedirectManager` plugin in your Filament Panel

```
use Novius\LaravelFilamentRedirectManager\LaravelFilamentRedirectManager;

class AdminFilamentPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel
            // ...
            ->plugins([
                // ...
                LaravelFilamentRedirectManager::make(),
            // ...
            ])
            // ...
            ;
    }
}
```

### Lang files

[](#lang-files)

If you want to customize the lang files, you can publish them with:

```
php artisan vendor:publish --provider="Novius\LaravelFilamentRedirectManager\RedirectManagerServiceProvider" --tag="lang"
```

Usage
-----

[](#usage)

This package allows you to manage redirects in a Laravel application through a Filament interface.

### Adding a Redirect

[](#adding-a-redirect)

To add a redirect, use the Filament interface provided by the package. You can configure the following fields:

- Original URL (from): The relative URL to redirect (e.g., /old-url).
- Redirection URL (to): The absolute or relative URL to redirect to (e.g.,  or /new-url).

Lint
----

[](#lint)

Lint your code with Laravel Pint using:

```
composer run-script lint
```

Licence
-------

[](#licence)

This package is under [GNU Affero General Public License v3](http://www.gnu.org/licenses/agpl-3.0.html) or (at your option) any later version.

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance94

Actively maintained with recent releases

Popularity19

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~34 days

Total

4

Last Release

33d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/341860?v=4)[Novius](/maintainers/novius)[@novius](https://github.com/novius)

---

Top Contributors

[![felixgilles](https://avatars.githubusercontent.com/u/900854?v=4)](https://github.com/felixgilles "felixgilles (17 commits)")

---

Tags

laravelfilamentredirects

###  Code Quality

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/novius-laravel-filament-redirect-manager/health.svg)

```
[![Health](https://phpackages.com/badges/novius-laravel-filament-redirect-manager/health.svg)](https://phpackages.com/packages/novius-laravel-filament-redirect-manager)
```

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3991.8k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v5 Starter Kit for Laravel 13, designed to accelerate the development of Filament-powered applications.

461.7k](/packages/ercogx-laravel-filament-starter-kit)[crumbls/layup

A visual page builder plugin for Filament 5 — Divi-style grid layouts with extensible widgets.

592.7k2](/packages/crumbls-layup)[slimani/filament-media-manager

A media manager plugin for Filament.

126.9k](/packages/slimani-filament-media-manager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
