novius/laravel-backpack-redirection-manager

This packages provides an interface to manage redirections via the Backpack admin panel

1.0.0 2020-05-06 13:52 UTC

This package is auto-updated.

Last update: 2024-04-26 10:25:08 UTC


README

Travis Packagist Release Licence

This package provides an admin panel to manage redirections with spatie/laravel-missing-page-redirector.

Installation

You can install the package via composer:

composer require novius/laravel-backpack-redirection-manager

The package will automatically register itself.

Next you must register the Spatie\MissingPageRedirector\RedirectsMissingPages middleware :

//app/Http/Kernel.php

protected $middleware = [
    ...
    \Spatie\MissingPageRedirector\RedirectsMissingPages::class,
],

Finally you can add a link in the Backpack sidebar :

<li>
    <a href="{{ route('crud.redirection.index') }}">
        <i class="fa fa-arrows-h"></i>
        <span>{{ trans('backpack-redirection-manager::crud.sidebar_title') }}</span>
    </a>
</li>

Configuration

This package provides a configuration file whose values overwrite the configuration of spatie/laravel-missing-page-redirector.

You can publish the configuration file if you want to change these values :

php artisan vendor:publish --provider="Novius\Backpack\RedirectionManager\RedirectionManagerServiceProvider" --tag=config

You can also publish the migrations, lang and routes :

php artisan vendor:publish --provider="Novius\Backpack\RedirectionManager\RedirectionManagerServiceProvider" --tag=migrations
php artisan vendor:publish --provider="Novius\Backpack\RedirectionManager\RedirectionManagerServiceProvider" --tag=lang
php artisan vendor:publish --provider="Novius\Backpack\RedirectionManager\RedirectionManagerServiceProvider" --tag=routes

Lint

Run php-cs with:

./cs.sh

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.