Redirect Manager
CommunityPlugin to manage URL redirections directly from the admin panel.
Author:
Novius
Package health
BetaAutomated checks of this plugin's Composer package
15 checks
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Skipped: GitLab CI includes pinned to SHA
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Skipped: Renovate MR responsiveness
- Failed: Dependabot or Renovate configured — No dependency updater configuration found. View details on Plumb
- Skipped: Dependency update cooldown configured
- Failed: Provides a security policy — View details on Plumb
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 54 days ago; last release 54 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Warning: Dist archive is lean
-
Passed:
Current Laravel version supported
—
Package dependencies resolve together with current Laravel
13.0. -
Passed:
Current PHP version supported
—
Constraint
>=8.2.0supports current PHP8.5. - Skipped: Current Symfony version supported
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
#Introduction
This package provides an interface to manage redirects with Laravel Filament Redirect Manager in Laravel Filament.
#Requirements
- Laravel Filament >= 4
- Laravel >= 11.0
- PHP >= 8.2
#Installation
#Composer
Install the package via composer:
composer require novius/laravel-filament-redirect-manager
#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
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
If you want to customize the lang files, you can publish them with:
php artisan vendor:publish --provider="Novius\LaravelFilamentRedirectManager\RedirectManagerServiceProvider" --tag="lang"
#Usage
This package allows you to manage redirects in a Laravel application through a Filament interface.
#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., https://www.site.com/new-url or /new-url).
#Lint
Lint your code with Laravel Pint using:
composer run-script lint
#Licence
This package is under GNU Affero General Public License v3 or (at your option) any later version.
The author
Novius is a French web agency specializing in the development of tailor-made web applications with Laravel.
We design robust, maintainable and business-oriented tools, with particular attention paid to the developer experience and the sustainability of projects. Our Filament plugins are used in production on customer projects and are designed to meet concrete needs, proven in the field.
From the same author
Action Preview
Action to preview a resource before saving or publishing it.
Author:
Novius
Slug
Plugin to generate and manage slugs automatically.
Author:
Novius
Relation Nested
Plugin to manage nested relationships using the Nested Set model.
Author:
Novius
Page Manager
Plugin to manage pages and structured content from the admin panel.
Author:
Novius
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Spotlight Pro
Browse your Filament Panel with ease. Filament Spotlight Pro adds a Spotlight/Raycast like Command Palette to your Filament Panel.
Dennis Koch