only(['order_id'])); return $this->successJson(); } /** * @return \Illuminate\Http\JsonResponse * @throws \app\common\exceptions\AppException */ public function force() { $order = Order::find(request()->input('order_id')); $order->refund(); return $this->successJson(); } }