Adel
redirect new registered users to additional registration wizard
I want new registered users to continoue registration prcess by redirecting them to a wizard where they can provide additional important information. this will occue only once. I tried to use middleware redirect but i am getting too many redirects error!
6 replies
optional login/registration
how to allow guest to be able to access my application with the ability to login/register (I will add them to the navigation bar) ?
I am following filament recommendation:
- Remove the default Authenticate::class from the authMiddleware() array in the panel configuration.
- Remove ->login() and any other authentication features from the panel.
- Remove the default AccountWidget from the widgets() array, because it reads the current user's data.
but now login and registration pages are not available!
2 replies
Dynamic field type and column type
is it possible to change field type dynamically based on some condition? also when showing the value of this field on table column how to show the data based on that condition?
ex. the field could be list, text or boolean. so if the user choose list a multi-select field with be shown, or if he choose a boolean the same field will become a checkbox, etc. the same field value will be shown on table column so if the data type was list then list of badges will be show and if type was boolean an check mark icon will be show.
2 replies
Relation manager tabs to be in the top of the page instead of the bottom
is is possible to have Relation manager tabs to be in the top of the page instead of the bottom. so the main tab will be the form itself and the other tabs to be the relation manager tabs?
3 replies
Add Action to custom widget
I am trying to use actions in custom widget following the docs below, but the modal is not showing
https://filamentphp.com/docs/3.x/widgets/adding-a-widget-to-a-blade-view
2 replies
multiple column type for the same column
I have dynamic feature builder which will be attached to resource. these features can have different types (select, text, checkbox). I want to show the value of these features based on the feature type.
ex. if the feature is of type checkbox I want to show ToggleColumn but if the type is text I want to show TextColumn.
how to achieve this in filament?
3 replies