I got this error on the live server (after deploying the project).. this error doesn't appeared on the local host this is the request code:
$('#SeekerCommunication_table').Tabledit({
url:"/update-Communications/action/",
dataType:'json',
columns:{
identifier : [0, 'ssn'],
editable:[
[1,'id'],
},
restoreButton:false,
deleteButton:false,
onSuccess:function(data, textStatus, jqXHR)
{
if(data.action === 'edit'){
$('#SeekerCommListModal').modal('hide');
}
}
});
this is the route<< and it defined as post:
Route::post('/update-Communications/action/',[CommunicationController::class,'action'])->name('UpdateCommunications');
error is message: "The GET method is not supported for this route. Supported methods: POST.",…} exception: "Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException" file: "H:\root\home\irbidchambernew-001\www\epusubdomin\vendor\laravel\framework\src\Illuminate\Routing\AbstractRouteCollection.php" line: 117 message: "The GET method is not supported for this route. Supported methods: POST." any help please?