uendel
How to test the form of a relation manager?
I want to verifiy if one select field of my relation manager has the correct options, however I don't know how I can make this assertion. I've tried:
But this returns the error:
How can I test this?
2 replies
Is it possible to render the raw html of a form?
So I want create a pdf file with the form of a resource, I'm using Laravel domPDF, so I can inject the raw html there and the pdf file will be built however I'm not sure how to get the raw html from a resource
6 replies
Is it possible to make the Checkbox element have its label before the input?
When creating a Checkbox element, it comes with the input before the label, I wanted to create it with the input after the label, I didn't see anyting on the documentation, is it possible?
6 replies
I can't change default create action's notification title
I have a simple createAction in a form, and I want to change the notification success title, I'm following the documentation https://filamentphp.com/docs/3.x/actions/prebuilt-actions/create#customizing-the-save-notification, but this is not working on my listUsers class.
8 replies
How do I combine two actions into one?
I have two actions, one creates a user the other one invites a user, I want to combine them into a single one, so when a user gets created, they get invited right away too. Is it possible? I know I about the after hook but I don't know how to execute an action from there. One important thing to note is that both actions are from plugins so it wouldn't be nice to extract the code from the packages.
3 replies