yassilah / laravel-nova-nested-form by yassi

A Laravel Nova package that allows you to create/update/delete nested related fields from a parent form.
438,674
241
13
Package Data
Maintainer Username: yassi
Package Create Date: 2018-10-23
Package Last Update: 2023-06-26
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:10:18
Package Statistics
Total Downloads: 438,674
Monthly Downloads: 4,561
Daily Downloads: 225
Total Stars: 241
Total Watchers: 13
Total Forks: 96
Total Open Issues: 60

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads

Nova Nested Form

This package allows you to include your nested relationships' forms into a parent form.

Release note for 2.0.5

  • [x] Max number of children
  • [x] Min number of children
  • [x] Set default open/collapse behavior
  • [x] Set heading template
  • [x] Set separator
  • [x] No need for trait anymore
  • [x] Auto detection of parent ID field
  • [x] Catching UpdatedSinceLastRetrieval exception (even for children)
  • [x] AfterFillCallback
  • [x] BeforeFillCallback
  • [x] Updated design for empty relationship
  • [x] Handle file uploads
  • [ ] COMING Conditional nested forms
  • [ ] COMING Updated design for single field nested form

Important changes since 1.0.4

To be more consistent with Nova's other fields, the order of the parameters has changed to become:

NestedForm::make($name, $viaRelationship = null, $class = null),

For instance, this:

NestedForm::make('Posts'),

Is now the same as:

NestedForm::make('Posts', 'posts', Post::class),

Also, translations are now available in your nested field! You just need to add this key in you language file:

"Add a new :resourceSingularName": "Ajouter un(e) :resourceSingularName"

Installation

composer require yassi/nova-nested-form

Attach a new relationship form to a resource

Simply add a NestedForm into your fields. The first parameter must be an existing NovaResource class and the second parameter (optional) must be an existing HasOneOrMany relationship in your model.

namespace App\Nova;

use Laravel\Nova\Fields\ID;
use Illuminate\Http\Request;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\Gravatar;
use Laravel\Nova\Fields\Password;
// Add use statement here.
use Yassi\NestedForm\NestedForm;

class User extends Resource
{
    ...
    public function fields(Request $request)
    {
        return [
            ID::make()->sortable(),

            Gravatar::make(),

            Text::make('Name')
                ->sortable()
                ->rules('required', 'max:255'),

            Text::make('Email')
                ->sortable()
                ->rules('required', 'email', 'max:254')
                ->creationRules('unique:users,email')
                ->updateRules('unique:users,email,{{resourceId}}'),

            Password::make('Password')
                ->onlyOnForms()
                ->creationRules('required', 'string', 'min:6')
                ->updateRules('nullable', 'string', 'min:6'),

            // Add NestedForm here.
            NestedForm::make('Posts'),
        ];
    }

You can also nest your relationship forms by adding another NestedForm into the fields of your App\Nova\Post.

NEW: Add a callback before and/or after your relationships have been updated

For instance, if you have to modify a value on the request before the nested form is filled or trigger an event after all relations have been set, you can now simply use this:

NestedForm::make('Posts')
->beforeFill(function ($request, $model, $attribute, $requestAttribute) {
    $request->merge(['key' => 'value']);
    // or
    if (!$model->hasSomeProperty) {
        throw new \Exception('You cannot do this.');
    }
})
->afterFill(function ($request, $model, $attribute, $requestAttribute, $touched) {
    $touched->each(function ($model) {
        if ($model->wasRecentlyCreated) {
            // do something
        }
    });
})

Add a minimum or a maximum number of children

For instance, if you want every user to have at least 3 posts and at most 5 posts, simply use:

NestedForm::make('Posts')->min(3)->max(5),

When creating a new user, 3 blank posts will be displayed. If you reach the maximum number of posts, the "Add a new post" button will disappear.

Set the default open/collapse behavior

If you want the nested forms to be opened by default, simply use:

NestedForm::make('Posts')->open(true),

You can also decide to open only the first nested form by using:

NestedForm::make('Posts')->open('only first'),

Modify the default heading

You can modify the default heading using the heading() method. You can use wildcards to add dynamic content to your label such as '{{id}}', '{{index}}' or any attribute present in the form.

NestedForm::make('Posts')->heading('{{index}} // Post - {{title}}'),

Modify the index separator

You can modify the default index separator using the separator() method when you have nested forms (e.g. 1. Post, 1.1. Comment, 1.1.1. Like).

NestedForm::make('Posts')->separator('\'),