darrenm
Is Filament PHP8.4 compatible?
Update. I can get the test suite to pass in 8.4, but only if I bump rector, phpstan and larastan up to the next major versions. Otherwise I get fatal errors.
I suspect this may well be caused by the analysis of the code and not the code itself, however that is a hunch not a fact. The fact is I saw the tests fail with 8.4 with the 3.x branch, so conclusion has to be that this project is not compatible with php8.4 yet.
I'd love somebody to show me I'm wrong.
5 replies
Wizard not submitting data on final step
aha - it wasn't that but it did point me in the right direction. The problem was not the uniqueness of the Placeholder name, it was using the same name for Placeholders as the Form state name. So using
Placeholder::make('name')
killed the form state for TextInput::make('name')
.
thanks for taking the time to look10 replies
Wizard not submitting data on final step
It's a bit of a monster, and a work-in-progress, but here's the entire thing: https://gist.github.com/dmlogic/748fc1ed8a4273b173de4fc8a7278d0e
10 replies
FileUpload field validation passes on upload but fails on submit
yeah I've been thinking that might be the workaround. I can see a hint that it's getting turned into an octet stream during the submission process.
But I've got over it for now with
->rules(['extensions:ico,png'])
(although that doesn't work on the client side)16 replies