V4 Layout help
I have the below code for a filament v4 layout, and I have attached the result for this layout in the screenshot. How can I extend sections so that the information section takes 4 columns and the image section takes 2 columns? Thanks for the help in advance.
Solution:Jump to solution
Flex doesn't support columns like that. Use a Grid instead
```php
Grid::make(3)
->schema([...
2 Replies
Solution
Flex doesn't support columns like that. Use a Grid instead
@awcodes Thanks a lot.