Laravel Nova: Group form fields in columns #4534
Unanswered
newtec-foggia
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Use https://github.com/Formfeed-UK/nova-theming-classes and then you can create a grid with tailwind: .component-form-panel > .component-card {
@apply grid grid-cols-12;
.component-field-wrapper {
@apply col-span-12;
}
.field-a {
@apply col-span-2;
}
.field-b {
@apply col-span-3;
}
....
} |
Beta Was this translation helpful? Give feedback.
2 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.
-
How can i create columns on my form fields in Laravel Nova?
Does anyone have an idea how to solve it? Or has a package that does it? I already searched but nothing found.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions