What is Laravel - Middleware ?
Answer / sunil kumar
Middleware acts as a bridge between a request and a response. It is a type of filtering mechanism.
Laravel includes a middleware that verifies whether the user of the application is authenticated or not.
If the user is authenticated, it redirects to the home page otherwise, if not, it redirects to the login page.
It can be create by executing the following command - php artisan make:middleware <middleware-name>.
Replace the <middleware-name> with the name of your middleware. The middleware that you create can be seen at app/Http/Middleware directory.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to know laravel version?
Why do we need dependency injection?
What encryption does laravel use?
What are facades?
What is url in laravel?
What are the steps to configure homestead?
Explain the service container?
What are laravel eloquent?
What is service provider in laravel?
How to configuration laravel?
What is attribute casting and how does it work in eloquent?
How to list all routes in laravel?