Issue
I am new to Laravel. How to do password encryption like Laravel hashing directly in table column, like md5(Not using code, I want to go and directly edit column value)
Solution
You could create a simple php code and use password_hash function, or just use online password_hash
tool like this. The value will be valid hashed password that can be used, since Hash::make
in Laravel uses password_hash
too (Laravel Framework Source).
Answered By - TheArKa
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.