[8.x] Update User Model to Match Jetstream Formatting (#5422)
* Update User Model to Match Jetstream Formatting * Update User.php Co-authored-by: Taylor Otwell <taylor@laravel.com>
This commit is contained in:
parent
69d0c504e3
commit
f1a51f7c62
|
@ -17,7 +17,9 @@ class User extends Authenticatable
|
|||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'name', 'email', 'password',
|
||||
'name',
|
||||
'email',
|
||||
'password',
|
||||
];
|
||||
|
||||
/**
|
||||
|
@ -26,7 +28,8 @@ class User extends Authenticatable
|
|||
* @var array
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password', 'remember_token',
|
||||
'password',
|
||||
'remember_token',
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue