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', 'in_stock' => 'nullable|integer|min:0', 'status' => 'nullable', ]; } }