Laravel - Controllers
What will happen if you call the 'destroy' method on a Laravel API resource controller with this route:
using DELETE /users/5?
Route::apiResource('users', UserController::class);using DELETE /users/5?
