Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

rezamasoudi/nova-textlist-field

Repository files navigation

Latest Version on Packagist Total Downloads License: MIT

Laravel Nova Text List Field

Create JSON text list as simple

textlist

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"),
        ];
    }