ekremogul / filament-redirects
A Filament resource to create and maintain page redirects for your website.
dev-main
2023-01-18 13:24 UTC
Requires
- php: ^8.0
- filament/filament: ^2.10
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-18 16:59:57 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