aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/User.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/User.php')
-rw-r--r--app/User.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/User.php b/app/User.php
index 923e2cc..f263c47 100644
--- a/app/User.php
+++ b/app/User.php
@@ -13,15 +13,15 @@ class User extends Authenticatable
* @var array
*/
protected $fillable = [
- 'name', 'email', 'password', 'prevHash','hash'
+ 'name', 'email', 'password', 'prevHash', 'hash',
];
-
+
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
- 'password', 'remember_token',
+ 'password', 'remember_token', 'prevHash',
];
}