'required|nonempty', 'nick_name' => 'required|nonempty', 'avatar' => 'required|nonempty', 'openid' => 'required|nonempty', 'unionid' => 'required|nonempty', 'country' => 'string', 'province' => 'string', 'city' => 'string', 'gender' => 'string', 'language' => 'string', ]; } /** * @return array */ public function messages(): array { return [ '*.*' => ':attribute无效', ]; } public function attributes(): array { return parent::attributes(); } }