check(); } /** * Get the validation rules that apply to the request. * * @return array|string> */ public function rules(): array { return [ 'order_number' => ['required', 'string'], 'order_date' => ['required', 'date'], 'order_sum' => ['required', 'string'], 'skus' => ['required', 'array'], ]; } }