DEV Community

Ndirangu Waweru
Ndirangu Waweru

Posted on

1

Hash passwords by default in Laravel

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);
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay