webauthnKeys()->findOrFail($request->id); $webauthnKey->enable(); return response('', 201); } public function destroy($id) { $webauthnKey = user()->webauthnKeys()->findOrFail($id); $webauthnKey->disable(); return response('', 204); } }