Add two-factor authentication fields to hidden array in User model

This commit is contained in:
Andras Bacsai 2024-03-07 13:05:04 +01:00
parent 129a644781
commit 8b74e50c50

View File

@ -26,6 +26,8 @@ class User extends Authenticatable implements SendsEmail
protected $hidden = [
'password',
'remember_token',
'two_factor_recovery_codes',
'two_factor_secret',
];
protected $casts = [
'email_verified_at' => 'datetime',