Replies: 1 comment
-
Hi. You can use your own template using: use Orchid\Support\Facades\Layout;
public function layout(): array
{
return [
Layout::view('myTabs'),
];
} or a deeper wrapper: public function layout(): array
{
return [
Layout::wrapper('myTabs', [
'foo' => [
RowLayout::class,
RowLayout::class,
],
'bar' => RowLayout::class,
]),
];
} You can see more details in the documentation here: https://orchid.software/en/docs/custom-template/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
is it possible to use a badge in a tab heading?
Thanks!
Ricardo
Beta Was this translation helpful? Give feedback.
All reactions