diff --git a/src/Fields/Repeater.php b/src/Fields/Repeater.php index 073ae551..aff742e1 100644 --- a/src/Fields/Repeater.php +++ b/src/Fields/Repeater.php @@ -42,10 +42,10 @@ public function collapsed(string $name): static return $this; } - public function pagination(int $rowsPerPage = 20): static + public function pagination(int $perPage = 20): static { $this->settings['pagination'] = true; - $this->settings['rows_per_page'] = $rowsPerPage; + $this->settings['rows_per_page'] = $perPage; return $this; }