Starting with version v1.0, this package now only supports Filament v3.x.
Follow these steps to update the package for Filament v3.x.
- Update the package version in your
composer.json
. - Run
composer update
. - Register the plugin inside of your project's
PanelProvider
.
use RyanChandler\FilamentNavigation\FilamentNavigation;
public function panel(Panel $panel): Panel
{
return $panel
->plugin(FilamentNavigation::make())
// ...
}
- Publish the plugin assets.
php artisan filament:assets
- Open your panel and check that the resource has been registered and existing navigation menus are showing.
If you have registered custom navigation item types, the addItemType()
method no longer exists.
Instead, register the item types on the FilamentNavigation
plugin object directly.
return $panel
->plugin(
FilamentNavigation::make()
->itemType('post', [
Select::make('post_id')
->//...
])
)
// ...
If you previously used the configuration file to change the navigation_model
or navigation_resource
values, those no longer exist and need to be updated to method calls on the plugin object.
return $panel
->plugin(
FilamentNavigation::make()
->usingResource(MyNavigationResource::class)
->usingModel(MyNavigationModel::class)
)
// ...
If you have any issues with the upgrade, please open an issue and provide details. Reproduction repositories are much appreciated.