定制 jackabox/nova-duplicate-field 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jackabox/nova-duplicate-field

最新稳定版本:0.3.0

Composer 安装命令:

composer require jackabox/nova-duplicate-field

包简介

A Laravel Nova field to duplicate records.

README 文档

README

No Longer Maintained

This plugin is no longer maintained. I've had no time to maintain this as I don't use Nova anymore. I'm looking for someone to take over this and handle it, let me know if you want to maintain it! See Issue #33.

Information

GitHub release (latest by date) Packagist GitHub

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

Installation

composer require jackabox/nova-duplicate-field

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

use Jackabox\DuplicateField\DuplicateField
DuplicateField::make('Duplicate')
    ->withMeta([
        'resource' => 'specialisms', // resource url
        'model' => 'App\Models\Specialism', // model path
        'id' => $this->id, // id of record
        'relations' => ['one', 'two'], // an array of any relations to load (nullable).
        '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).
    ]),

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.

Hooking Into Replication

Duplicate Field uses a relatively standard replicate method which is available via the Eloquent model. To modify data as you are duplicating the field use an observer on the replicating method.

Issues

If there are any issues or requests feel free to open a GitHub issue or a pull request.

Todo

  • Duplicate relations alongside the main post.
    • Integrate reattaching of relations, rather than needing to duplicate (i.e. belongsToMany)
  • Catch errors to the end user.
  • Alert for the user (confirmation possibly).
  • Documentation on how to hide/show when needed.
  • Documentation on how to hook into replication.
  • Add a button to the resource view.
  • Clean up methods for v1

统计信息

  • 总下载量: 107.56k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 31
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 30
  • Watchers: 2
  • Forks: 39
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-10-31