示例#1
0
 /**
  * 更改分组信息.
  *
  * @return Response
  */
 public function postUpdate(UpdateRequest $request)
 {
     /*
      * 请求参数:
      *
      * id: 粉丝组自增ID
      * title: 名称
      */
     /*
      * 1 执行本地更改操作
      */
     return $this->fanGroup->update($this->account->id, $request);
 }