about form layout
Sorry, i've a bunch of question about form layout..
1. How can I have a grid inside grid? (red mark)
2. How can I have radio component with label above inline options? (blue mark)
3. How can I have 2 toggle component in one line of other TextInput component? (brown mark)
Solution:Jump to solution
you can use a view component + css
https://filamentphp.com/docs/2.x/forms/layout#view
```php
View::make('custom-view')...
8 Replies
1. Use any of the Layout components together with
->columns()
2. I think it's ->inline()
or ->inlineLabel()
3. Use a layout component around themwhat should i do to make the inline options below the label
i've tried
like this
?
or this
i've chosen using the group, but how can i customize the gap that is too big?
i've tried using extraAttributes
Solution
this is help, a lot..
thanks..