Add options to array form of CartItem

This commit is contained in:
Rob Gloudemans
2016-06-30 15:43:08 +02:00
committed by GitHub
parent 1c4e6c6abe
commit 0c3c859b6c

View File

@@ -343,8 +343,9 @@ class CartItem implements Arrayable
'name' => $this->name,
'qty' => $this->qty,
'price' => $this->price,
'options' => $this->options,
'tax' => $this->tax,
'subtotal' => $this->subtotal
];
}
}
}