F
Filament8mo ago
130413

how to move plugin resources in the vendor to filament resources

how to move plugin resources in the vendor to filament resources because I want to add something, for example changing the navigation group
5 Replies
Lara Zeus
Lara Zeus8mo ago
you can copy them from the vendor but you will get two resources unless the plugin provide a config to disable the resource but you dont need that to change the navigation group add this to AppServiceProvider
FormResource::navigationSort(100);
FormResource::navigationIcon('heroicon-o-home');
FormResource::navigationGroup('New Name');
FormResource::navigationSort(100);
FormResource::navigationIcon('heroicon-o-home');
FormResource::navigationGroup('New Name');
130413
1304138mo ago
Plugins still can't use this, but filament resources can
130413
1304138mo ago
No description
130413
1304138mo ago
not working
130413
1304138mo ago
You can, but you have to disable the navigation group code in the plugin first
No description