What is meant by Laravel - Hashing ?
Answer / sunil kumar
Hashing is the process of transforming a string of characters into a shorter fixed value or a key that represents the original string.
Laravel uses the Hash facade which provides a secure way for storing passwords in a hashed manner.
The hashed passwords are stored using make method.
This method allows managing the work factor of the bcrypt hashing algorithm, which is popularly used in Laravel.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain named routes in laravel?
What is the use of Laravel - Sending Email ?
What do you know about facades in laravel? Explain.
What is binding?
How can we check the laravel current version?
What is eloquent orm?
Explain me active record implementation?
What is meant by Controller Middleware ?
What are deferred providers in laravel?
What is the use of in laravel?
What are model factories?
What is cross site request forgery with example?