Filament V3 How to custom the Page Resource navigation (icon, label, sort, group...) #99
-
I want to know How to custom the Page Resource navigation (icon, label, sort, group...) |
Beta Was this translation helpful? Give feedback.
Answered by
Z3d0X
Oct 13, 2023
Replies: 1 comment
-
For labels you can publish the translation files & edit them there. For Navigation Icon/Group/Sort, you can use the following in the boot method of a service provider // use Z3d0X\FilamentFabricator\Resources\PageResource;
PageResource::navigationIcon('heroicon-o-academic-cap');
PageResource::navigationGroup('Settings');
PageResource::navigationSort(1); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
devhoussam1998
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For labels you can publish the translation files & edit them there.
php artisan vendor:publish --provider="\Z3d0X\FilamentFabricator\FilamentFabricatorServiceProvider"
For Navigation Icon/Group/Sort, you can use the following in the boot method of a service provider