uendel
uendel
FFilament
Created by uendel on 10/8/2024 in #❓┊help
Is it possible to render the raw html of a form?
I tested it, it works! but I decided to create the PDF file from the ground up
6 replies
FFilament
Created by uendel on 10/8/2024 in #❓┊help
Is it possible to render the raw html of a form?
Hey! I found this plugin https://github.com/ArielMejiaDev/filament-printable which doesnt quite work the way I want but it's already something
6 replies
FFilament
Created by uendel on 8/23/2024 in #❓┊help
Is it possible to make the Checkbox element have its label before the input?
That worked:
Checkbox::make('check')
->extraFieldWrapperAttributes(['class' => 'reverse-checkbox']),
Checkbox::make('check')
->extraFieldWrapperAttributes(['class' => 'reverse-checkbox']),
.reverse-checkbox label {
flex-direction: row-reverse;
}
.reverse-checkbox label {
flex-direction: row-reverse;
}
6 replies
FFilament
Created by uendel on 7/13/2024 in #❓┊help
I can't change default create action's notification title
That worked for me! Thank you sir!
8 replies
FFilament
Created by uendel on 7/5/2024 in #❓┊help
How do I combine two actions into one?
I was able to handle this by extracting the code from the invite plugin and inserting it into an observer, as suggested on this other post (https://discord.com/channels/883083792112300104/1252047138456866827/1252047138456866827) But I think this is still relevant if the action is too complex.
3 replies