If you need to make a $.post
work to a Laravel Route::delete
or Route::put
just add an argument "_method"="delete"
or "_method"="put"
.
$.post("your/uri/here", {"arg1":"value1",...,"_method":"delete"}, function(data){}); ...
Must works for others Frameworks
Note: Tested with Laravel 5.6 and jQuery 3