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