I created a route for buy an item in laravel 5.7
Route::post('/buy/item', "userController@buy_item")->name('buy_item_form');
Everything works fine but when I refresh the page(replace to GET Request) I got an MethodNotAllowedHttpException. The GET route not exist, Its must return an 404 error. I dont understant why its return me this exception.