novius/laravel-nova-redirect-manager
最新稳定版本:2.0.0
Composer 安装命令:
composer require novius/laravel-nova-redirect-manager
包简介
This package provides an interface to manage redirects with Nova
关键字:
README 文档
README
This package provides a Nova Tool to manage redirects with spatie/laravel-missing-page-redirector.
Requirements
- PHP >= 7.3
- Laravel Nova >= 4.0
- Laravel Framework >= 8.0
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 for more information.
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
You can also publish the lang files :
php artisan vendor:publish --provider="Novius\LaravelNovaRedirectManager\RedirectManagerServiceProvider" --tag=lang
Lint
Run php-cs with:
composer run-script lint
Contributing
Contributions are welcome! Leave an issue on Github, or create a Pull Request.
Licence
This package is under GNU Affero General Public License v3 or (at your option) any later version.
统计信息
- 总下载量: 14.95k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: AGPL-3.0-or-later
- 更新时间: 2019-12-02