diff options
author | Marvin Borner | 2018-07-08 17:14:26 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-08 17:14:26 +0200 |
commit | 2b7e31ffa79f508453bc5c759a7511e476cbbe96 (patch) | |
tree | 209ea7974323b0b9270090f4f993ffb1a77085bd /app/User.php | |
parent | 8ba38dcf7fbd96a6f13639057e045eba114e2f39 (diff) |
Added basic blockchain-like hashing for verified data
Diffstat (limited to 'app/User.php')
-rw-r--r-- | app/User.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/User.php b/app/User.php index 4d6d0ee..d8caf1e 100644 --- a/app/User.php +++ b/app/User.php @@ -13,7 +13,7 @@ class User extends Authenticatable * @var array */ protected $fillable = [ - 'name', 'email', 'password', + 'name', 'email', 'password', 'hash' ]; /** |