Repeater Positioning of multiple items

Hi, I have a grid with 2 columns. In this grid i have a repeater. Is it possible to make the width of the repeater 1 col and make it fill from left to right, top to bottom?
Solution:
```php Repeater::make('members') ->schema([]) ->columnSpanFull() ->grid(2),...
Jump to solution
5 Replies
Vp
Vp2y ago
->columnSpanFull()
Pieter
PieterOP2y ago
that would be if i want to have it full width. But i want these 2 to be next to each other.
Vp
Vp2y ago
Solution
Vp
Vp2y ago
Repeater::make('members')
->schema([])
->columnSpanFull()
->grid(2),
Repeater::make('members')
->schema([])
->columnSpanFull()
->grid(2),
like this
Pieter
PieterOP2y ago
Yes that works mostly, the problem is with the fact that i would like it to be reactive based on the amount of repeater items. but grid doesnt accept a closure.

Did you find this page helpful?