reduce width checbox on repeater field
Repeater::make('piutang')
->deletable(false)
->addable(false)
->orderable(false)
->columnSpanFull()
->columns(7)
->schema([
Checkbox::make('check')
->live()
->extraAttributes(['class' => 'w-5']),
2 Replies
Dont use
extraAttributes
Best way to do this is using columnspan https://filamentphp.com/docs/3.x/forms/layout/grid#controlling-how-many-columns-a-component-should-span
And make columnSpan(2)
on the other fields12 is to much for me
thx btw