Is there any way that I can, in Laravel 4.2, make a url link such that it sends a DELETE or PUT request?
For example, I have a delete button, I know I could put it in a form and make the form send a delete request to resource.destroy to delete something and all that. What I want is to avoid having o wrap the button in a form, and just make a url that goes to resource.destroy (I'm using restful resources) and does what's in that function. I know I can use action() but that sends a GET request. Can I make it send a DELETE/PUT whatever other request without wrapping it in a form? Is it possible?