delete in laravel with get using Route::resource()
问题 I'm trying to delete in laravel using GET instead of DELETE because my shared server doesn't support DELETE verb. So, I used Jeffrey Way's method Thing is in my routes.php, I use Route::resource('users', 'UserController'); For example. So, When I use GET instead of DELETE with resource, system think I will use show method, instead of destroy method. The only way I see to do that is not using resource method to route, and detail all my routes, but I don't like it, it is kind of heavy to read.