Skip to content

Commit

Permalink
Livewire 3
Browse files Browse the repository at this point in the history
  • Loading branch information
RhysLees committed Aug 29, 2023
1 parent faf063c commit 032cf75
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Nova Impersonating Banner

## Upgrading from 2.x to 3.x

Require this package with composer.

```shell
composer require rhyslees/nova-impersonating-banner "^3.0"
```

```shell
npm install && npm run build
```

## Configuration

Delete the `nova-impersonating-banner.php` file in `config` as we now use nova's config for impersonation.

```php
/*
|--------------------------------------------------------------------------
| Nova Impersonation Redirection URLs
|--------------------------------------------------------------------------
|
| This configuration option allows you to specify a URL where Nova should
| redirect an administrator after impersonating another user and a URL
| to redirect the administrator after stopping impersonating a user.
|
*/

'impersonation' => [
'started' => '/',
'stopped' => '/',
],
```

0 comments on commit 032cf75

Please sign in to comment.