You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On my User Resource I use one Tabs-Component and one standard Nova Panel, like this:
public function fields(Request $request)
{
return [
new Tabs(__('Personal Details'), $this->getPersonalDetailsFields($request)),
new Panel(__('Game Details'), $this->getGameDetailsFields($request)),
];
}
On the detail page, two cards are displayed, with the Personal Details at the top and the Game Details at the bottom, as expected.
On the edit page however, just one card is displayed, with the Game Details at the top, then the tab bar, then the Personal Details fields.
It looks like this screenshot from potentially related issue #14.
My desired behaviour is for the edit page to look exactly like the detail page, one card for the Tab-component, one card for the Panel-component, in the same order that they are declared in the source code. Is this possible?
The text was updated successfully, but these errors were encountered:
I'd need to take a look how this could be implemented correctly. Due to limited time that might be a while. If you want to take a crack at it yourself please feel free to do so.
On my User Resource I use one Tabs-Component and one standard Nova Panel, like this:
On the detail page, two cards are displayed, with the Personal Details at the top and the Game Details at the bottom, as expected.
On the edit page however, just one card is displayed, with the Game Details at the top, then the tab bar, then the Personal Details fields.
It looks like this screenshot from potentially related issue #14.
My desired behaviour is for the edit page to look exactly like the detail page, one card for the Tab-component, one card for the Panel-component, in the same order that they are declared in the source code. Is this possible?
The text was updated successfully, but these errors were encountered: