getKey(); $log = FundLogModel::find($id); if (!$log) { return $this->response()->error('资金日志不存在'); } // 跳转到资金账户页面,并带上用户ID和资金账户ID作为筛选条件 return $this->response()->redirect( admin_url("fund-accounts?user_id={$log->user_id}&fund_id={$log->fund_id->value}") ); } }