How to submit disabled fields
Is there something similar to immutable fields from Nova in Filament, so submit the field even if its disabled for the user. Or do I always need a pairing Hidden input for that use case? I tried
readOnly
but it's only available on Textinput.
https://nova.laravel.com/docs/v5/resources/fields#immutable-fieldsLaravel Nova
Fields - Laravel Nova
Nova ships with a variety of fields out of the box, including fields for text inputs, booleans, dates, file uploads, Markdown, and more.
2 Replies
Solution
You add
->dehydrated(false)
?