Home > front end >  Laravel 8x Post Routing Issue
Laravel 8x Post Routing Issue

Time:10-01

Hello All.

I am new to laravel.

Route::get('/', [UserController::class, "Userindex"]);
Route::post('/', [UserController::class, "UserProcessLogin"]);

These are my routes. When I post to this route by form, it always goes to the get route in the form , my action is:

<form action="{{url('/')}}" method="post">

But Post Route is not working, this is working with the other route, but not with the same route. When I Test the same process with Postman Or thunder Client, they are returning Good results, as I worked. Please Help me.

CodePudding user response:

You can use action="" in form. Use like this:

<form action="" method="post">

CodePudding user response:

Please go through Laravel 8 documentation Also use other url for post method like

Route::post('/login',[UserController::class,"UserProcessLogin"]);
  • Related