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:Jump to solution
```php
Repeater::make('members')
->schema([])
->columnSpanFull()
->grid(2),...
5 Replies
->columnSpanFull()
that would be if i want to have it full width. But i want these 2 to be next to each other.
Solution
like this
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.