Title between Tabs and other fields in Edit View
amesas opened this issue · 1 comments
amesas commented
In Edit View, the Tabs field is displayed first, then the "Update :resource: :title" and then the rest of fields.
public function fields(NovaRequest $request)
{
return [
ID::make()->sortable(),
Tabs::make('Some Title', [
Tab::make('Tab 1', [....]),
Tab::make('Tab 2', [....])
]),
Number::make('Field 1'),
Text::make('Field 2')
];
}
amesas commented
Adding field1 and field2 to a panel, resolves the problem.