What is meant by Laravel - Authentication ?
Answer / rajani
Authentication is the process of identifying the user credentials.
In web applications, authentication is managed by sessions which take the input parameters such as email or username and password, for user identification.
Laravel uses the following command to create forms and the associated controllers to perform authentication -
php artisan make:auth
The controller which is used for the authentication process is HomeController.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to enable query log in laravel 5?
What are the benefits of facades?
What are the types of service providers?
What do you understand by reverse routing?
Explain contextual binding and how does it work?
How to create real time sitemap.xml file in laravel?
What is a Laravel - Ajax ?
Tell me what is the purpose of using dd() function iin laravel?
List basic concepts in laravel?
What is auth api laravel?
How to make a custom validation rule in laravel?
Please explain the difference between laravel and codeigniter?