PHPackages                             novius/laravel-nova-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-nova-redirect-manager

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

novius/laravel-nova-redirect-manager
====================================

This package provides an interface to manage redirects with Nova

2.0.0(8mo ago)315.8k↓40%4AGPL-3.0-or-laterPHPPHP &gt;=7.3.0CI passing

Since Dec 2Pushed 8mo ago6 watchersCompare

[ Source](https://github.com/novius/laravel-nova-redirect-manager)[ Packagist](https://packagist.org/packages/novius/laravel-nova-redirect-manager)[ RSS](/packages/novius-laravel-nova-redirect-manager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (6)Versions (10)Used By (0)

Nova Redirect Manager
=====================

[](#nova-redirect-manager)

[![Novius CI](https://github.com/novius/laravel-nova-redirect-manager/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/novius/laravel-nova-redirect-manager/actions/workflows/main.yml)[![Packagist Release](https://camo.githubusercontent.com/88ef81eaf91aa383a7febacc30d09f17aaf57bef103919638ac405147059546e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f766975732f6c61726176656c2d6e6f76612d72656469726563742d6d616e616765722e7376673f6d61784167653d31383030267374796c653d666c61742d737175617265)](https://packagist.org/packages/novius/laravel-nova-redirect-manager)[![Licence](https://camo.githubusercontent.com/25be58fbc95cf249fdc6747337f8d6eccc175dc1a043c73c5730b9914cd873a6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6e6f766975732f6c61726176656c2d6e6f76612d72656469726563742d6d616e616765722e7376673f6d61784167653d31383030267374796c653d666c61742d737175617265)](https://github.com/novius/laravel-nova-redirect-manager#licence)

This package provides a Nova Tool to manage redirects with [spatie/laravel-missing-page-redirector](https://github.com/spatie/laravel-missing-page-redirector).

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

[](#requirements)

- PHP &gt;= 7.3
- Laravel Nova &gt;= 4.0
- Laravel Framework &gt;= 8.0

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

[](#installation)

You can install the package via composer:

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

The package will automatically register itself.

Next, launch migrations :

```
php artisan migrate

```

Next, you must register the `Spatie\MissingPageRedirector\RedirectsMissingPages` middleware and publish the config file : See [spatie/laravel-missing-page-redirector](https://github.com/spatie/laravel-missing-page-redirector?tab=readme-ov-file#installation) for more information.

Configuration
-------------

[](#configuration)

In the `config/missing-page-redirector.php` file, change the `redirector` key to `Novius\LaravelNovaRedirectManager\Redirector\DatabaseRedirector::class` :

```
return [
    //...

    /*
     * This is the class responsible for providing the URLs which must be redirected.
     * The only requirement for the redirector is that it needs to implement the
     * `Spatie\MissingPageRedirector\Redirector\Redirector`-interface
     */
    'redirector' => \Novius\LaravelNovaRedirectManager\Redirector\DatabaseRedirector::class,
];
```

You can also publish the configuration file if you want to change values for this package :

```
php artisan vendor:publish --provider="Novius\LaravelNovaRedirectManager\RedirectManagerServiceProvider" --tag=config

```

```
return [

    /*
     * This is the model used by the database redirector
     */
    'redirector_model' => \Novius\LaravelNovaRedirectManager\Models\Redirect::class,

    /*
     * This is the nova resource used to manage Redirect items
     */
    'redirect_nova_resource' => \Novius\LaravelNovaRedirectManager\Resources\Redirect::class,

    /*
     * This max length rule for Redirect item
     */
    'redirect_url_max_length' => 1000,
];
```

Language
--------

[](#language)

You can also publish the lang files :

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

```

Lint
----

[](#lint)

Run php-cs with:

```
composer run-script lint
```

Contributing
------------

[](#contributing)

Contributions are welcome! Leave an issue on Github, or create a Pull Request.

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

44

—

FairBetter than 92% of packages

Maintenance59

Moderate activity, may be stable

Popularity31

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 70% 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 ~300 days

Recently: every ~224 days

Total

8

Last Release

258d ago

Major Versions

v0.2.0 → v1.0.02023-03-20

1.1.0 → 2.0.02025-09-02

PHP version history (2 changes)v0.1.0PHP &gt;=7.2.0

v1.0.0PHP &gt;=7.3.0

### 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 (14 commits)")[![tony-novius](https://avatars.githubusercontent.com/u/243603340?v=4)](https://github.com/tony-novius "tony-novius (3 commits)")[![alicecd](https://avatars.githubusercontent.com/u/20792004?v=4)](https://github.com/alicecd "alicecd (1 commits)")[![mbardelmeijer](https://avatars.githubusercontent.com/u/1583095?v=4)](https://github.com/mbardelmeijer "mbardelmeijer (1 commits)")[![tonyyb](https://avatars.githubusercontent.com/u/11064382?v=4)](https://github.com/tonyyb "tonyyb (1 commits)")

---

Tags

laravelnovaredirectsseolaravelnovaredirects

###  Code Quality

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[dillingham/nova-attach-many

Attach Many Nova field

2712.0M2](/packages/dillingham-nova-attach-many)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)[alexwenzel/nova-dependency-container

A Laravel Nova 4 form container for grouping fields that depend on other field values.

461.0M2](/packages/alexwenzel-nova-dependency-container)[stepanenko3/nova-cards

A Laravel Nova info cards.

33143.0k](/packages/stepanenko3-nova-cards)

PHPackages © 2026

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