On this page
upgrade to v3.3
remove FilamentNavigation::make(),
from your panel plugins
if you published the config file, add the Navigation
key to the models
array
1'models' => [2 //...3 'Navigation' => \LaraZeus\Sky\Models\Navigation::class,4 ],
upgrade to v3.2
In v3.2, I refactored the configuration to separate the frontend configuration from filament-related ones. This causes an issue when having multiple panels.
- First, publish the config file by running the command:
1php artisan vendor:publish --tag="zeus-sky-config" --force
- move your configuration from your panel provider to the
zeus-sky
config file.
So these are the deprecated configuration methods:
1 2->skyPrefix() 3->skyMiddleware() 4->uriPrefix() 5->skyModels() 6->editor() 7->parsers() 8->recentPostsLimit() 9->searchResultHighlightCssClass()10->skipHighlightingTerms()11->defaultFeaturedImage()
upgrade from 2 to 3
to upgrade Sky
from v2 to v3 please check this upgrade guid