Skip to content

Releases: lara-zeus/sky

v3.3.3

03 Dec 14:43
01505a4
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.3.2...v3.3.3

v3.3.2

07 Nov 18:44
6efaca1
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.3.1...v3.3.2

v3.3.1

06 Nov 14:31
0336b7d
Compare
Choose a tag to compare

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

02 Nov 12:58
2b9339e
Compare
Choose a tag to compare

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

31 Oct 08:25
926b77e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.2.4...v3.2.5

v3.2.4

20 Oct 11:42
05952c0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.2.3...v3.2.4

v3.2.3

18 Oct 16:55
c0783fc
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.2.2...v3.2.3

v3.2.2

10 Oct 12:34
1095cc6
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.2.1...v3.2.2

v3.2.1

08 Oct 11:25
e43c6cd
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.2.0...v3.2.1

v3.2.0

05 Oct 13:17
de11ba1
Compare
Choose a tag to compare

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.

  1. First, publish the config file by running the command:
php artisan vendor:publish --tag="zeus-sky-config" --force
  1. 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