masoudi / nova-textlist-field
This package is abandoned and no longer maintained.
No replacement package was suggested.
text list field for the Laravel Nova
Package info
github.com/rezamasoudi/nova-textlist-field
Language:Vue
pkg:composer/masoudi/nova-textlist-field
0.2
2022-09-04 10:25 UTC
Requires
- php: ^7.3|^8.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Laravel Nova Text List Field
Create JSON text list as simple
How to use
Install package via Composer
composer require masoudi/nova-textlist-field
Cast field to array
class Post extends Model { protected $casts = [ 'labels' => 'array' ]; }
Add the TextList field at nova resource
public function fields(NovaRequest $request) { return [ ... TextList::make('Labels')->placeholder("Press enter to add"), ]; }
