diff --git a/src/CartItem.php b/src/CartItem.php index 46c3309c..9824cf66 100644 --- a/src/CartItem.php +++ b/src/CartItem.php @@ -343,8 +343,9 @@ public function toArray() 'name' => $this->name, 'qty' => $this->qty, 'price' => $this->price, + 'options' => $this->options, 'tax' => $this->tax, 'subtotal' => $this->subtotal ]; } -} \ No newline at end of file +}