Skip to content

2.0-beta7

Compare
Choose a tag to compare
@alecritson alecritson released this 19 Jan 15:22
· 364 commits to main since this release

Fixed

  • When translating an attribute, if we can't find a translation, we default to whatever the FieldType gives back instead of erroring.
  • TranslatedText fieldtype now implements JsonSerializable interface (#50).

Changed

  • Models that have channels now implement start_at and end_at columns. This replaces the previous published_at column.
  • Laravel UI modal components removed.

Added

  • Added a new default column to the tax_classes table.
  • Added customer_id to orders so an order has a 1:1 relation to a customer. (#73).
  • Created the AttributeManifest class so dev's can add their own attributable classes.
  • Created the FieldTypeManifest class so dev's can add custom FieldTypes to the store.
  • Added $table->userForeignKey() macro for migrations that create foreign keys which reference a user id.

View Changes