apimediaru/nova-dashboard-redirect

1.0.1 2022-03-30 12:09 UTC

This package is auto-updated.

Last update: 2024-05-29 05:21:07 UTC


README

Simple package that allows to redirect nova user to any other route instead of homepage.

Installation

composer require apimediaru/nova-dashboard-redirect

Publishing vendor assets

php artisan vendor:publish --tag=nova-dashboard-redirect

Configuration

Redirect configuration. Might be string what would be passed into Vue Router path option or an array or callable that returns route configuration.

'redirect' => '/resources/users',

Example of array route configuration:

'redirect' => [
  'name' => 'index',
  'params' => [
    'resourceName' => 'articles',
  ],
],

Exaple of callable:

'redirect' => '\SomeNamespace\SomeClass::getRouteConfiguration',