'nullable|string', 'room_no' => 'required|string', 'page' => 'nullable|integer:strict', 'list_rows' => 'nullable|integer:strict', ]; } /** * 获取已定义验证规则的错误消息 */ public function messages(): array { return [ 'room_no.required' => '请填写直播间号', ]; } /** * 验证的各字段的含义 * @return array|string[] */ public function attributes(): array { return [ 'keyword' => '关键词', 'room_no' => '直播间号', 'page' => '页码', 'list_rows' => '条数', ]; } }