Update your user model
// App\Models\User
use Illuminate\Support\Facades\Hash;
...
/**
* Hash the password by default.
*/
public function setPasswordAttribute($password)
{
$this->attributes['password'] = Hash::make($password);
}
Update your user model
// App\Models\User
use Illuminate\Support\Facades\Hash;
...
/**
* Hash the password by default.
*/
public function setPasswordAttribute($password)
{
$this->attributes['password'] = Hash::make($password);
}
For further actions, you may consider blocking this person and/or reporting abuse
Valerio -
Carlos Talavera -
Poovarasu Sekar -
Alfred Nutile -
Top comments (0)