Sunday, February 20, 2022

[FIXED] how to encrypt password like Laravel Hashing directly in table column

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)

enter image description here

enter image description here


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

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.