0

I am Creating an Application and need a Professional Help as

Route::post(....) not working inside Route::group()

but working perfect outside Route:group()

DanielBarbarian
  • 5,093
  • 12
  • 35
  • 44

1 Answers1

0

i got answered by some others source but want to answer so may someone else could get some help, my problem was that in laravel routing

using:

Route::group(['middleware' => 'web'], function(){
       // Some Functionality
});

Validation was not working

so the answer is that just to change the upper statement like below

using:

Route::group(['middlewareGroups' => 'web'], function(){
       // Some Functionality
});

And the Magic Works