check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules(): array { return [ 'order_number' => 'nullable|string', 'product_id' => 'required|exists:products,id', 'quantity' => 'required|integer|min:1', ]; } }