ostheneo/nova-fields is a Laravel package for a laravel nova field..
It currently has 7 GitHub stars and 65.787 downloads on Packagist (latest version 1.1).
Install it with composer require ostheneo/nova-fields.
Discover more Laravel packages by ostheneo
or browse all Laravel packages to compare alternatives.
Last updated
This package will include a group of fields that haven't been updated yet for nova v4 The first one is Benjacho/belongs-to-many-field-nova
Belongs To Many field to represent many to many relationship in field. This Field allow attaching relationships easily.
composer require ostheneo/nova-fields
In the resource you need to pass:
use OsTheNeo\NovaFields\BelongsToManyField;
public function fields(Request $request){
return [
..., //If you are using with BelongsToMany native Field, put this field after
BelongsToManyField::make('Role Label', 'roles', Role::class),
];
}
The MIT License (MIT). Please see License File for more information.