skip to Main Content

The POST method is not supported for this route. Supported methods: GET, HEAD. + Laravel

I am trying to update . I am getting the error The POST method is not supported for this route. Supported methods: GET, HEAD. Following are the code In Route Route::post('editcountries','AppHttpControllersbackendadmineditcountryController@editcountries'); In Controller function editcountries(Request $request) { $country_en = $request->input('country_en');…

VIEW QUESTION

Jquery Post with dynamic key

I would like to send a post request. But I have to change the key. function call(obj) { console.log("Call " + obj.value); if (obj.value == 1) { $.post( "index.htm", { '"webdata".web[1].Taster': '1'} ); } I would like to change [1]…

VIEW QUESTION
Back To Top
Search