mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 11:04:45 +02:00
Add top navigation config
This commit is contained in:
parent
0c72833af7
commit
4bb16887c4
@ -36,10 +36,11 @@ class AdminPanelProvider extends PanelProvider
|
||||
->default()
|
||||
->id('admin')
|
||||
->path('admin')
|
||||
->topNavigation(true)
|
||||
->topNavigation(config('panel.filament.top-navigation', false))
|
||||
->login()
|
||||
->homeUrl('/')
|
||||
->favicon('/pelican.ico')
|
||||
->brandName('Pelican')
|
||||
->profile(EditProfile::class, false)
|
||||
->colors([
|
||||
'danger' => Color::Red,
|
||||
|
@ -163,4 +163,16 @@ return [
|
||||
// Should an email be sent to a server owner whenever their server is reinstalled?
|
||||
'send_reinstall_notification' => env('PANEL_SEND_REINSTALL_NOTIFICATION', true),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| FilamentPHP Settings
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This section controls Filament configurations
|
||||
*/
|
||||
|
||||
'filament' => [
|
||||
'top-navigation' => env('FILAMENT_TOP_NAVIGATION', false),
|
||||
],
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user