You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
declare(strict_types=1);
namespace App\Request;
class OnlineCancelRequest extends BaseFormRequest{ /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; }
/** * Get the validation rules that apply to the request. */ public function rules(): array { return [ 'order_id' => 'required|nonempty|integer|exists:ims_cjdc_order_main,id', ]; }
public function messages(): array { return [ 'order_id.*' => ':attribute信息不正确', ]; }
public function attributes(): array { return [ 'order_id' => '订单号', ]; }}
|