Jyrki
Help: How do i use different Model (Admin) instead of using FilamentPHP default Model (User)
You define your Admin model in the new guard, see https://stackoverflow.com/a/40994838 as an example
8 replies
Help: How do i use different Model (Admin) instead of using FilamentPHP default Model (User)
Use a custom authentication guard https://filamentphp.com/docs/3.x/panels/users#setting-the-authentication-guard
8 replies
How to send Notification into email in filamentphp By smtp?
You don't need the filament notifications for this, use the Laravel one https://laravel.com/docs/10.x/notifications#mail-notifications
8 replies
Custom Column Filament
It's not really filament related, more Laravel.
You can also try the sum method on your column https://filamentphp.com/docs/3.x/tables/columns/relationships#aggregating-relationships
16 replies
custom action button can be used in multiple places
Check the actions documentation https://filamentphp.com/docs/3.x/actions/trigger-button
22 replies
Where can I find the main <head> tag in my filamentapp
Take a look at the
panels::head.end
render hook https://filamentphp.com/docs/3.x/support/render-hooks#available-render-hooks8 replies
Testing TextInputColumn
I had a trick for v2 https://v2.filamentphp.com/tricks/test-an-editable-field, but did not need it yet for v3. So no idea if it will work
8 replies
How do I display the count on a tab badge
See https://filamentphp.com/docs/3.x/forms/layout/tabs#setting-a-tab-badge, you can also pass a closure here
3 replies
how to move navigation menu to user menu if not possible how to disable the group menu
But on first sight you can't hide the navigation, only disable the resources
SkyPlugin::make() ->hasPostResource()
and then you can overwrite the resource in your own app to configure it10 replies
how to move navigation menu to user menu if not possible how to disable the group menu
This is how you can hide resources in the menu https://filamentphp.com/docs/3.x/panels/navigation#disabling-resource-or-page-navigation-items
10 replies
translatable compatible?
I tried to set up a fresh app yesterday and for me it worked with following the documentation. So something must be wrong, make sure you added the Translatable trait on your resource and pages (every page has a different trait)
8 replies
translatable compatible?
Did you follow every step in the docs https://filamentphp.com/plugins/filament-spatie-translatable? Where do you set the locales?
8 replies