Revert "Revert the User model password hash cast as this breaks things"

This reverts commit 340f3e1f23.
This commit is contained in:
Kevin MacMartin 2023-07-14 16:40:08 -04:00
parent 340f3e1f23
commit 8e3cc32e77

View file

@ -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',
]; ];
/** /**