Fieldset::make()->title('Locations')->id('locations')->fields([
InlineRepeater::make()
->name('location_taxa')
->label('Locations')
->allowBrowser()
->relation(Location::class)
->fields([
Input::make()
->name('title')
->translatable()
->disabled(),
Wysiwyg::make()
->name('details')
->translatable()
,
]),
]),
);
Fieldset::make()->title('Locations')->id('locations')->fields([
InlineRepeater::make()
->name('location_taxa')
->label('Locations')
->allowBrowser()
->relation(Location::class)
->fields([
Input::make()
->name('title')
->translatable()
->disabled(),
Wysiwyg::make()
->name('details')
->translatable()
,
]),
]),
);