return User::create([
'password' => bcrypt($data['password']),
]);
For further actions, you may consider blocking this person and/or reporting abuse
return User::create([
'password' => bcrypt($data['password']),
]);
For further actions, you may consider blocking this person and/or reporting abuse
Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.
Pooyan Razian -
Bruh Buh -
Bruh Buh -
Gilles Hamelink -
Top comments (2)
The proper way of hashing a password in laravel would be using the Hash facade:
'password' => Hash::make($data['password'])
Official Documentation: laravel.com/docs/10.x/hashing#hash...
Thankyou bro for your insight, this may be can help me to.