Skip to content

Commit 8db513b

Browse files
Make CustomField value attribute fillable
1 parent 49be725 commit 8db513b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Models/CustomField.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ class CustomField extends Model
1212
use SoftDeletes;
1313

1414
protected $guarded = ['id'];
15+
16+
protected $fillable = [
17+
'value'
18+
];
19+
1520
protected $casts = [
1621
'answers' => 'array',
1722
];

0 commit comments

Comments
 (0)