From 340f3e1f2319a06a45997fc259b608dab2677a77 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 13 Jul 2023 22:10:02 -0400 Subject: [PATCH] Revert the User model password hash cast as this breaks things --- app/Models/User.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index cc319e6..0e64e10 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -44,8 +44,7 @@ class User extends Authenticatable * @var array */ protected $casts = [ - 'email_verified_at' => 'datetime', - 'password' => 'hashed', + 'email_verified_at' => 'datetime' ]; /**