Releases: treeStoneIT/shopping-cart
Releases · treeStoneIT/shopping-cart
v1.1.0
Added:
- Ability to provide an options array when adding products. If you've already included this package in your project and want to use this feature, you'll need to add a nullable JSON column called
options
to yourcart_items
table.
Schema::table('cart_items', function (Blueprint $table) {
$table->json('options')->nullable();
});
v1.0.4
Migrations are now publishable
v1.0.3
- Fixed a bug where cached totals weren't clearing on
destroy()
v1.0.2
- Migration optimization
- Fixed
count
method to return total quantity
v1.0.1
Changed:
- default tax rate was changed to 0
v1.0.0
Initial release