I use pingpong extend in my user model:
class User extends \Pingpong\Admin\Entities\User implements AuthenticatableContract, CanResetPasswordContract, BillableContract
after upgrading on my test site, I'm now unable to login to the site, it comes back with "the credentials do not match our records". The login works correctly with 2.1.1 which is what I have on my live server.
however, when I go back to the standard extends Model, it works fine:
class User extends Model implements AuthenticatableContract, CanResetPasswordContract, BillableContract
I use pingpong extend in my user model: class User extends \Pingpong\Admin\Entities\User implements AuthenticatableContract, CanResetPasswordContract, BillableContract
after upgrading on my test site, I'm now unable to login to the site, it comes back with "the credentials do not match our records". The login works correctly with 2.1.1 which is what I have on my live server.
however, when I go back to the standard extends Model, it works fine: class User extends Model implements AuthenticatableContract, CanResetPasswordContract, BillableContract