When I add a cart item via a model, all fields are taken over except the tax which is always null. I can only set the tax in this case as follows: ```php $model = Model::find(1); $item = LaraCart::add($model); $item->tax = $model->tax; ```