Skip to content

Releases: datomatic/nova-enum-field

v1.3.0

28 Jun 09:37
Compare
Choose a tag to compare
  • moved name and default params of filters to callable
// from
EnumBooleanFilter::make('Stato', 'status', CourseStatus::class, CourseStatus::DEFAULT)

// to
EnumBooleanFilter::make('status', CourseStatus::class)->name('Stato')->default(CourseStatus::DEFAULT)

v1.2.1

21 Jun 17:48
Compare
Choose a tag to compare
  • fixed errors with base pure enum

v1.2.0

20 Jun 14:02
Compare
Choose a tag to compare
  • added compatibility with datomatic/laravel-enum-helper
  • added custom property option
  • added subset of cases option

v1.1.0

04 Jun 14:09
Compare
Choose a tag to compare

v1.0.0

04 Jun 14:04
Compare
Choose a tag to compare

Nova field for enum in PHP 8.1 and above (both pure Enum and BackedEnum) with datomatic/nova-enum-field compatibility.
There is also a Nova Select filter and Nova Boolean filter.