mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Revert "Revert the User model password hash cast as this breaks things"
This reverts commit 340f3e1f23
.
This commit is contained in:
parent
340f3e1f23
commit
8e3cc32e77
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ class User extends Authenticatable
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
protected $casts = [
|
protected $casts = [
|
||||||
'email_verified_at' => 'datetime'
|
'email_verified_at' => 'datetime',
|
||||||
|
'password' => 'hashed',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue