Skip to content

Releases: treeStoneIT/shopping-cart

v1.1.0

26 Nov 17:36
fc0059b
Compare
Choose a tag to compare

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 your cart_items table.
Schema::table('cart_items', function (Blueprint $table) {
    $table->json('options')->nullable();
});

v1.0.4

04 Nov 19:42
Compare
Choose a tag to compare

Migrations are now publishable

v1.0.3

29 Oct 16:52
719d7bd
Compare
Choose a tag to compare
  • Fixed a bug where cached totals weren't clearing on destroy()

v1.0.2

24 Oct 20:47
d151ef0
Compare
Choose a tag to compare
  • Migration optimization
  • Fixed count method to return total quantity

v1.0.1

07 Oct 14:54
Compare
Choose a tag to compare

Changed:

  • default tax rate was changed to 0

v1.0.0

07 Oct 01:11
Compare
Choose a tag to compare

Initial release