Open
Description
Should let you add any field an unlimited amount of times and remove previous values.
API:
Repeater::make('column')
->field(SomeField::class)
->storeValueUsing(function (Repeater $field, SomeField[] $fields) {
// access the fields as an array
// return what should be stored in the column
})
This could also make multi image/file uploads much less of a pain!