Move items in menu

Hi, I have a question. I want to move this category and items to end of menu list. How I can do that? Items are from filament plugins.
No description
3 Replies
Dennis Koch
Dennis Koch3mo ago
The plugin must provide a config to set the sort.
__Dementor
__Dementor3mo ago
I have a config for exceptions
return [
'icons' => [
'navigation' => 'heroicon-o-exclamation-triangle',
'exception' => 'heroicon-o-exclamation-triangle',
'headers' => 'heroicon-o-arrows-right-left',
'cookies' => 'heroicon-o-circle-stack',
'body' => 'heroicon-s-code-bracket',
'queries' => 'heroicon-s-circle-stack',
],
];
return [
'icons' => [
'navigation' => 'heroicon-o-exclamation-triangle',
'exception' => 'heroicon-o-exclamation-triangle',
'headers' => 'heroicon-o-arrows-right-left',
'cookies' => 'heroicon-o-circle-stack',
'body' => 'heroicon-s-code-bracket',
'queries' => 'heroicon-s-circle-stack',
],
];
And for logger
return [
'datetime_format' => 'm/d/Y H:i:s',
'date_format' => 'm/d/Y',

'activity_resource' => App\Filament\Resources\ActivityResource::class,

'resources' => [
...
],

'access' => [
...
],

'notifications' => [
...
],

'models' => [
...
],

'custom' => [
// [
// 'log_name' => 'Custom',
// 'color' => 'primary',
// ]
],
];
return [
'datetime_format' => 'm/d/Y H:i:s',
'date_format' => 'm/d/Y',

'activity_resource' => App\Filament\Resources\ActivityResource::class,

'resources' => [
...
],

'access' => [
...
],

'notifications' => [
...
],

'models' => [
...
],

'custom' => [
// [
// 'log_name' => 'Custom',
// 'color' => 'primary',
// ]
],
];
I second config I should add sorting to custom array, right? But what about the first config and jobs? Jobs have no configuration at all.
Dennis Koch
Dennis Koch3mo ago
I don't know the plugins. They need to provide an option. It's not something you can do (or maybe, but it would be hacky probably) So best to ask the package authors. Or create a PR