What is meant by check method ?
Answer / surbhi
This is shown in the code given below -
if (Hash::check('plain-text', $hashedPassword)) {
// The passwords match...
}
Note that the check method compares the plain-text with the hashedPassword variable and if the result is true, it returns a true value.
| Is This Answer Correct ? | 0 Yes | 0 No |
how do I install laravel, talk about the different ways?
Where can I learn laravel?
What is auth?
Explain how to register a service provider via composer in laravel?
What is the purpose of using dd() function iin laravel?
What are the server requirements for laravel 6.0?
Does laravel support caching?
What is auth in laravel?
How to register a middleware in laravel?
What is guard in laravel authentication?
What are advantages of laravel?
How do I assign several roles to users and permit the users to perform some actions based on those roles?