Hi, I would like to know how to debug or what might cause the following error on the console?
The form itself does not show the Tag field. Thanks in advance.
public function fields(NovaRequest $request)
{
$tags = \App\Models\Tag::all()->pluck('tag', 'id');
return [
ID::make()->sortable(),
Select2::make('Tag', 'tag')->options($tags)->configuration(['multiple' => false]),
];
}
Hi, I would like to know how to debug or what might cause the following error on the console? The form itself does not show the Tag field. Thanks in advance.