How to Hash Password in Laravel

Laravel provide Bcrypt hashing for store a secure password by using keyword Bcrypt we can hash our password

How to Hash Password in Laravel

$password = bcrypt('secret');

We can use this also

$password = Hash::make('secret');

– See the complete Blog at: How to Hash Password in Laravel

FindNerd is a excellent technical community where you can post and look for PHP Questions and Answers .

If you need more Blogs related to PHP language then visit to our PHP Blogs.

How to Hash Password in Laravel