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
abhishekpanthee -
Arif Hossain -
pauq -
Yappaholic The Junior -
Top comments (0)