Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is meant by Global Middleware and Route Middleware ?

Answers were Sorted based on User's Feedback



what is meant by Global Middleware and Route Middleware ?..

Answer / rishabh khanna

The Global Middleware will run on every HTTP request of the application, whereas the Route Middleware will be assigned to a specific route.
The middleware can be registered at app/Http/Kernel.php.
This file contains two properties $middleware and $routeMiddleware.
Middleware property is used to register Global Middleware.
To register the global middleware, list the class at the end of $middleware property.
RouteMiddleware property is used to register route specific middleware.
To register the route specific middleware, add the key and value to $routeMiddleware property.

Is This Answer Correct ?    0 Yes 0 No

what is meant by Global Middleware and Route Middleware ?..

Answer / Shwet Srivastava

Global middleware in Laravel are middleware that handle every incoming HTTP request to the application, before it reaches a route or controller. On the other hand, route middleware are specific to certain routes and handles requests for those specific routes only.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Laravel PHP Framework Interview Questions

How to generate pretty urls in laravel?

1 Answers  


What is schema in laravel?

1 Answers  


What is url in laravel?

1 Answers  


List default packages of laravel 5.6?

1 Answers  


Name some inbuilt authentication controllers of laravel.

1 Answers  


How to run a php file in laravel?

1 Answers  


List out common artisan commands used in laravel.

1 Answers  


Explain the concept of events in laravel.

1 Answers  


Explain, how to get current environment in laravel 5?

1 Answers  


What is dependency injection laravel?

1 Answers  


Explain the request life cycle of laravel?

1 Answers  


What is dd() function in laravel?

1 Answers  


Categories