How to add a middleware in route group?



How to add a middleware in route group?..

Answer / sachin-laradev

Here is an example of auth middleware route group

Route: :group(['prefix' => 'auth'], function () {
Route::get('/login'"AuthController@login");
Route: :post('/login',"AuthController@authenticate');
Route: :get('/logout'"AuthController@logout");
});

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Laravel PHP Framework Interview Questions

What is laravel quora?

0 Answers  


What are advantages of laravel?

0 Answers  


Tell us have you used lumen before?

0 Answers  


what is meant by Listeners ?

1 Answers  


What is namespace laravel?

0 Answers  


How to generate it on homestead?

0 Answers  


What are the basic concepts in laravel?

0 Answers  


What are the feature of laravel 5.0?

0 Answers  


What is a named route?

0 Answers  


What do you know about service providers in laravel?

0 Answers  


What is the default session timeout duration and how can it be set?

0 Answers  


How do I require authentication for a set of routes associated with a subdomain?

0 Answers  


Categories