Releases: lara-zeus/sky
v3.3.3
v3.3.2
v3.3.1
What's Changed
Added a Small feature to allow to hide Resources from Navigation:
in your panel provider you can hide any resource from the side nav
->hideResources([
FaqResource::class,
])
for more check out the docs:
https://larazeus.com/docs/sky/v3/getting-started/configuration
Full Changelog: v3.3.0...v3.3.1
v3.3.0
What's Changed
Thanks to ryangjchandler, who created the beautiful plugin filament-navigation.
Now, Sky already includes a version of the plugin to upgrade and add more features easily.
to upgrade:
remove FilamentNavigation::make(),
from your panel plugins.
if you published the config file, add this
'models' => [
//...
'Navigation' => \LaraZeus\Sky\Models\Navigation::class,
],
Full Changelog: v3.2.5...v3.3.0
v3.2.5
What's Changed
- Add ckb translation by @RawanD201 in #173
New Contributors
- @RawanD201 made their first contribution in #173
Full Changelog: v3.2.4...v3.2.5
v3.2.4
v3.2.3
v3.2.2
What's Changed
- Bump stefanzweifel/git-auto-commit-action from 4 to 5 by @dependabot in #166
- Update composer.lock by @atmonshi in #168
Full Changelog: v3.2.1...v3.2.2
v3.2.1
v3.2.0
What's Changed
upgrade to v3.2
In v3.2, I refactored the configuration to separate the frontend configuration from filament-related ones.
This causes some issues when having multiple panels.
- First, publish the config file by running the command:
php 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:
->skyPrefix()
->skyMiddleware()
->uriPrefix()
->skyModels()
->editor()
->parsers()
->recentPostsLimit()
->searchResultHighlightCssClass()
->skipHighlightingTerms()
->defaultFeaturedImage()
Full Changelog: v3.1.4...v3.2.0