1
0
forked from metin2/web

Finished registration and e-mail verification

This commit is contained in:
2023-07-31 08:35:40 +03:00
parent 8b5ef5211b
commit 2f230b9608
13 changed files with 283 additions and 27 deletions

View File

@ -49,7 +49,6 @@ class Account extends User implements MustVerifyEmail
*/
protected $fillable = [
'login',
'password',
'email',
];
@ -71,7 +70,6 @@ class Account extends User implements MustVerifyEmail
*/
protected $casts = [
'email_verified_at' => 'datetime',
'password' => 'hashed',
'status' => AccountStatusEnum::class
];