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?
image.png
Solution
Repeater::make('members')
    ->schema([])
    ->columnSpanFull()
    ->grid(2),

like this
Was this page helpful?