Trouble with a read-only field for a model relationship
I have a model
When I save the form - I'm getting the error
Even though I've got the field set as disable, readOnly and dehydrated = false.
So I think Filament really shouldn't be trying to save the field - but I must have something wrong!
I want to display the value, but it's not editable at all. Any suggestions for what I should be doing differently?
Here's an excerpt from my
SystemLog with a relationship retryingUser.When I save the form - I'm getting the error
Add fillable property [retryingUser] to allow mass assignment on [App\Models\SystemLog].Even though I've got the field set as disable, readOnly and dehydrated = false.
So I think Filament really shouldn't be trying to save the field - but I must have something wrong!
I want to display the value, but it's not editable at all. Any suggestions for what I should be doing differently?
Here's an excerpt from my
SystemLogResource: