diff --git a/src/Fields/Repeater.php b/src/Fields/Repeater.php index 7417cbf..40ac3bd 100644 --- a/src/Fields/Repeater.php +++ b/src/Fields/Repeater.php @@ -126,6 +126,8 @@ public function getForm(): array ->live(debounce: 250) ->labelKey('name') ->maxDepth(0) + ->indentable(false) + ->reorderable(true) ->addable(fn (string $operation) => $operation !== 'create') ->disabled(fn (string $operation) => $operation === 'create') ->hint(fn (string $operation) => $operation === 'create' ? __('Fields can be added once the field is created.') : '')