PHPackages                             outhebox/nova-duplicate-field - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. outhebox/nova-duplicate-field

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

outhebox/nova-duplicate-field
=============================

A Laravel Nova field to duplicate records.

v1.0.0(4y ago)0432↓100%MITPHPPHP &gt;=7.1.0

Since Jun 27Pushed 4y ago1 watchersCompare

[ Source](https://github.com/MohmmedAshraf/nova-duplicate-field)[ Packagist](https://packagist.org/packages/outhebox/nova-duplicate-field)[ RSS](/packages/outhebox-nova-duplicate-field/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

### Information

[](#information)

[![GitHub release (latest by date)](https://camo.githubusercontent.com/3cd5bb7a16459be16fe991f44e0fb755b85ff8a71bedd8e483ef9347d28734ae/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f4d6f686d6d65644173687261662f6e6f76612d6475706c69636174652d6669656c64)](https://camo.githubusercontent.com/3cd5bb7a16459be16fe991f44e0fb755b85ff8a71bedd8e483ef9347d28734ae/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f4d6f686d6d65644173687261662f6e6f76612d6475706c69636174652d6669656c64)[![Packagist](https://camo.githubusercontent.com/deeac1fdcf2471d28236bcd85440238e5482b4cb646c214410f4ed72353e7044/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f75746865626f782f6e6f76612d6475706c69636174652d6669656c64)](https://camo.githubusercontent.com/deeac1fdcf2471d28236bcd85440238e5482b4cb646c214410f4ed72353e7044/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f75746865626f782f6e6f76612d6475706c69636174652d6669656c64)[![GitHub](https://camo.githubusercontent.com/829e1442c9343f9002bd7bbb7fcb698b9509cd5b8f6c620205778d168f8dd850/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f4d6f686d6d65644173687261662f6e6f76612d6475706c69636174652d6669656c64)](https://camo.githubusercontent.com/829e1442c9343f9002bd7bbb7fcb698b9509cd5b8f6c620205778d168f8dd850/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f4d6f686d6d65644173687261662f6e6f76612d6475706c69636174652d6669656c64)

Allow users to duplicate a record through the Laravel Nova Admin Panel along with any relations that are required (currently works with HasMany).

### Installation

[](#installation)

```
composer require outhebox/nova-duplicate-field

```

Reference the duplicate field at the top of your Nova resource and then include the necessary code within the fields.

```
use OutheBox\DuplicateField\DuplicateField
```

```
DuplicateField::make('Duplicate')
    ->withMeta([
        'id' => $this->id, // id of record
        'model' => 'App\Models\Specialism', // model path
        'except' => ['status'], // an array of fields to not replicate (nullable).
        'override' => ['status' => 'pending'], // an array of fields and values which will be set on the modal after duplicating (nullable).
        'resource' => 'specialisms', // resource url
        'relations' => ['one', 'two'], // an array of any relations to load (nullable).
    ]),
```

Duplicate field only works on the index view at the moment (plans to expand this are coming) and already passes through `onlyOnIndex()` as an option.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [jackabox](https://github.com/jackabox)
- [Mohamed Ashraf](https://github.com/MohmmedAshraf)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1776d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1fafcf25aad612ce33476889bc889bafe60e215d045c23778007218e475c8e47?d=identicon)[MohammedAshraf](/maintainers/MohammedAshraf)

---

Top Contributors

[![MohmmedAshraf](https://avatars.githubusercontent.com/u/44909285?v=4)](https://github.com/MohmmedAshraf "MohmmedAshraf (3 commits)")

---

Tags

laravelduplicatenova

### Embed Badge

![Health badge](/badges/outhebox-nova-duplicate-field/health.svg)

```
[![Health](https://phpackages.com/badges/outhebox-nova-duplicate-field/health.svg)](https://phpackages.com/packages/outhebox-nova-duplicate-field)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[digital-creative/conditional-container

Provides an easy way to conditionally show and hide fields in your Nova resources.

116593.8k4](/packages/digital-creative-conditional-container)[jackabox/nova-duplicate-field

A Laravel Nova field to duplicate records.

30111.5k](/packages/jackabox-nova-duplicate-field)[genealabs/laravel-overridable-model

Provide a uniform method of allowing models to be overridden in Laravel.

92398.0k2](/packages/genealabs-laravel-overridable-model)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
