Revert the User model password hash cast as this breaks things

This commit is contained in:
Kevin MacMartin 2023-07-13 22:10:02 -04:00
parent a548e27d16
commit 340f3e1f23

View file

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