Skip to content

Commit 1b2b6d5

Browse files
author
Liran Cohen
committed
Fix value fill.
1 parent 0b4b820 commit 1b2b6d5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Models/CustomField.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class CustomField extends Model
1414
protected $guarded = ['id'];
1515

1616
protected $fillable = [
17-
'value',
1817
'type',
1918
'title',
2019
'description',

src/Models/CustomFieldResponse.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
class CustomFieldResponse extends Model
88
{
99
protected $guarded = ['id'];
10+
11+
protected $fillable = [
12+
'value',
13+
];
1014

1115
const VALUE_FIELDS = [
1216
'number' => 'value_int',

0 commit comments

Comments
 (0)