/nova-create-or-add

A Laravel Nova Package For Creating BelongsTo Relation Resource On The Same Form

Primary LanguageVue

A Nova field to replace BelongsTo field for on the go resource creation.

Form Field Screenshot Field Form Expanded Screenshot Form Open

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require shivanshrajpoot/nova-create-or-add

Usage

// in Resource File
use Shivanshrajpoot\NovaCreateOrAdd\NovaCreateOrAdd;

// ...

NovaCreateOrAdd::make('Manufacturer')
  ->searchable()
  ->prepopulate()
  ->rules('required'),