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 |
What is meant by Authorization Mechanism in Laravel ?
Explain binding a singleton?
Explain how to upgrade valet to valet 2.0?
Explain homestead in laravel.
What is attribute casting and how does it work in eloquent?
What are seeds in laravel?
How to serve sites with tls on valet?
What is lts in laravel?
What is a soft delete?
List some default packages provided by laravel 5.6?
How to get configuration values in laravel?
What is Terminable Middleware ?