'required|min:2|max:20', 'url' => 'required', 'id' => 'required|integer|gt:0', ]; } // 场景列表 protected $scenes = [ 'add' => ['title','url'], 'edit' => ['id','title','url'], 'delete' => ['id'], ]; /** * 获取已定义验证规则的错误消息 * * @return array */ public function messages() { return [ 'title.required' => '菜单名称必填', 'title.min' => '菜单名称需2字以上', 'title.max' => '菜单名称最多20字', 'url.required' => '菜单路径必填', 'id.required' => 'ID未知', 'id.integer' => 'ID格式错误', 'id.gt' => 'ID格式错误', ]; } }