Skip to content

Commit 3d6a3c0

Browse files
authored
Merge pull request #34 from screenfluent/fix/user-model-field-consistency
fix: Change User model fillable field from 'fullname' to 'name'
2 parents 5a3ad42 + 3875bea commit 3d6a3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class User extends Model
99
* @var array
1010
*/
1111
protected $fillable = [
12-
'fullname', 'email', 'password',
12+
'name', 'email', 'password',
1313
];
1414

1515
/**

0 commit comments

Comments
 (0)