Delete User email fields

This commit is contained in:
NoAvatar 2024-10-17 06:15:35 +10:00
parent 166523a235
commit ac408c0675

View File

@ -12,7 +12,6 @@ class User extends Authenticatable
protected $fillable = [
'name',
'email',
'password',
];
@ -24,7 +23,6 @@ class User extends Authenticatable
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
}