示例#1
0
 /**
  * 创建分组.
  *
  * @return Reponse
  */
 public function postStore(CreateRequest $request)
 {
     /*
      * 请求参数:
      * title: 名称
      */
     /*
      * 1 执行本地创建操作
      */
     return $this->fanGroup->store($this->account->id, $request);
 }