All notable changes to nova-enum-field
will be documented in this file.
- Fixed a bug with Pure Enum (thanks to @korobkovandrey)
- Add Laravel 11 compatibility
- fix error with
StringBackedEnum
with numeric string
- Display the value returned by the method defined in "property" by @AndreSchwarzer
Laravel 10 support
- Allow closure in the
attach
method. - Fixed correct use of property parameter on resource edit select
- nullable field support
- json sub-array field (json_column->enum)
- updating for datomatic/enum-helper compatibility
- fix for dynamic methods
- refactor default filter method
- 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)
- fixed errors with base pure enum
- added compatibility with datomatic/laravel-enum-helper
- added custom property option
- added subset of cases option
- Added compatibility with datomatic/enum-helper
First release 🚀