ekremogul/filament-redirects

A Filament resource to create and maintain page redirects for your website.

dev-main 2023-01-18 13:24 UTC

This package is auto-updated.

Last update: 2024-09-18 16:52:12 UTC


README

A Filament resource to create and maintain page redirects for your website.

Installation

You can install the package via composer:

composer require ekremogul/filament-redirects

Register the middleware within the $middleware middleware group array inside of App/Http/Kernel.php

protected $middleware = [
        ...
        \Ekremogul\FilamentRedirects\Middleware\RedirectMiddleware::class
    ];

You can publish and run the migrations with:

php artisan vendor:publish --tag="filament-redirects-migrations"
php artisan migrate