Hi, I've added a new input(notes) on my "add to cart" but it seems not storing using add() method. ``` $cart = new Cart(); $cart->add([ ... 'notes' => 'Notes goes here' ]); ``` When I `print_r($cart->items());`, the "notes" has no value.