Closed
Description
- Laravel Version: 8.68.1
- Nova Version: 3.30.0
- PHP Version: 8.0
Description:
The latest version of nova v3.30.0
breaks the pivot fields on the index page..
// Model
public function exports(): BelongsToMany
{
return $this
->belongsToMany(Export::class)
->using(ExportSegment::class)
->withPivot([ 'status' ]);
}
// Resource
BelongsToMany::make('Exports', 'exports', Export::class)->fields(function () {
return [
StatusField::make('Status', 'status'),
];
}),
Reverting to 3.29.0
the fields works as expected..
Metadata
Metadata
Assignees
Labels
No labels