Justin.Rhodes
Justin.Rhodes
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
I use that method a lot since I typically register more than one panel. So this makes it apply to both, in my cases.
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
Oh great!
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
If it's bypassing the panel provider. Hard to say though.
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
In the boot method
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
Something like this
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
FilamentColor::register([
'primary' => Color::hex('#fefefe'),
'secondary' => Color::hex('#000000'),
]);
FilamentColor::register([
'primary' => Color::hex('#fefefe'),
'secondary' => Color::hex('#000000'),
]);
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
FilamentColor::register()
18 replies
FFilament
Created by alan on 2/15/2025 in #❓┊help
Custom Form Page in Filament with BasePage: Inheriting Theme Colors
Have you tried registering them from the AppServiceProvider boot?
18 replies
FFilament
Created by SuperUserDo on 12/11/2024 in #❓┊help
Hide Profile Menu Item
No description
13 replies
FFilament
Created by SuperUserDo on 12/11/2024 in #❓┊help
Hide Profile Menu Item
return $panel
->userMenuItems([
'profile' => MenuItem::make()
->icon('heroicon-o-sparkles')
->label(__('Profile'))
->url('/dashboard/profile'),
])
->profile()
return $panel
->userMenuItems([
'profile' => MenuItem::make()
->icon('heroicon-o-sparkles')
->label(__('Profile'))
->url('/dashboard/profile'),
])
->profile()
13 replies
FFilament
Created by SuperUserDo on 12/11/2024 in #❓┊help
Hide Profile Menu Item
Since you have a Profile MenuItem registered, you could instead register the first menu item as your Profile item to override it.
13 replies