optimistdigital/nova-simple-repeatable

A Laravel Nova simple repeatable rows field.

Maintainers

👁 Tarpsvo

Package info

github.com/outl1ne/nova-simple-repeatable

Language:Vue

pkg:composer/optimistdigital/nova-simple-repeatable

Statistics

Installs: 154 352

Dependents: 0

Suggesters: 0

Stars: 74

Open Issues: 19

3.0.0 2025-08-19 11:30 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 796ff5a2c782f7cc46516111246d8ac94517b4f6

Flexiblenovalaravelkeyvaluefieldrowsrepeatable


README

👁 Latest Version on Packagist
👁 Total Downloads

This Laravel Nova package allows you to create simple horizontal rows of fields that the user can add/remove.

Requirements

  • php: >=8.0
  • laravel/nova: ^5.0

Features

A Laravel Nova simple repeatable rows field.

Screenshots

👁 Form page

Installation

Install the package in to a Laravel app that uses Nova via composer:

composer require outl1ne/nova-simple-repeatable

Usage

use Outl1ne\NovaSimpleRepeatable\SimpleRepeatable;

public function fields(Request $request) {
 SimpleRepeatable::make('Users', 'users', [
 Text::make('First name'),
 Text::make('Last name'),
 Email::make('Email'),
 ])
 ->canAddRows(true) // Optional, true by default
 ->canDeleteRows(true), // Optional, true by default
}

Localization

The translations file can be published by using the following publish command:

php artisan vendor:publish --provider="Outl1ne\NovaSimpleRepeatable\SimpleRepeatableServiceProvider" --tag="translations"

You can then edit the strings to your liking.

Credits

License

Nova Simple Repeatable is open-sourced software licensed under the MIT license.