'require', 'number' => 'require', 'remark' => 'max:250', ]; /** * 提示消息 */ protected $message = [ 'product_id.required' => '产品编号不能为空', 'number.require' => '商品数量不能为空', 'remark.max' => '备注不能超过250个文字', ]; /** * 验证场景 */ protected $scene = [ 'submit' => ['product_id', 'number', 'remark'], // 创建订单 'submitFlash' => ['product_id', 'number', 'city_id', 'remark', 'flash_id'], // 秒杀创建订单 ]; }