Skip to content

Commit

Permalink
Update upgrade.md
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Oct 5, 2023
1 parent 21bd6a3 commit 9bd4192
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion docs/getting-started/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,36 @@ title: Upgrading
weight: 100
---

to upgrade `Sky` to v3 please check this [upgrade guid](https://larazeus.com/docs/core/v3/upgrade)
## upgrade to v3.2

in v3.2 I refactor the configuration, to separate the frontend configuration from filament related ones.
this case issues when having multiple panels.

first publish the config file by running:

```bash
php artisan vendor:publish --tag="zeus-sky-config" --force
```

now move your configuration form your panel provider to the `zeus-sky` config file.

so these are the deprecated configuration methods:

```php

->skyPrefix()
->skyMiddleware()
->uriPrefix()
->skyModels()
->editor()
->parsers()
->recentPostsLimit()
->searchResultHighlightCssClass()
->skipHighlightingTerms()
->defaultFeaturedImage()

```

## upgrade from 2 to 3

to upgrade `Sky` from v2 to v3 please check this [upgrade guid](https://larazeus.com/docs/core/v3/upgrade)

0 comments on commit 9bd4192

Please sign in to comment.