Nested rows/column #2060
Answered
by
tabuna
LukaszFormela
asked this question in
Q&A
Nested rows/column
#2060
-
Hello, I'm struggling to make the design that looks as follows. I need to put one row ("Primary Information") directly above another ("Materials"), otherwise there's a lot of unused blank space as "Materials" is pushed to new line, just below "Additional Information". |
Beta Was this translation helpful? Give feedback.
Answered by
tabuna
Jan 12, 2022
Replies: 1 comment 1 reply
-
You can achieve the result like in the picture like this: public function layout(): array
{
return [
Layout::columns([
[
PrimaryInformationRow::class,
MaterialsRow::class,
],
AdditationalInformation::class,
]);
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LukaszFormela
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can achieve the result like in the picture like this: