LaravelPackages.net
Acme Inc.
Toggle sidebar
zareismail/nova-wizard

A Laravel Nova tool.

21.559
14
v0.1.1
About zareismail/nova-wizard

zareismail/nova-wizard is a Laravel package for a laravel nova tool.. It currently has 14 GitHub stars and 21.559 downloads on Packagist (latest version v0.1.1). Install it with composer require zareismail/nova-wizard. Discover more Laravel packages by zareismail or browse all Laravel packages to compare alternatives.

Last updated

nova-wizard

A wizard form for the Laravel Nova

Table of Contents

Introduction

This package gives you the ability to creating or updating a resource step by step and validating and storing resources on each step.

Installation

To get started with nova-wizard run the below command:

    composer require zareismail/nova-wizard

Resource Configurations

To use, your resource class should implement the Wizard interface. Then for creating each step use the Step class like the following:

    use Zareismail\NovaWizard\Contracts\Wizard; 
    use Zareismail\NovaWizard\Step;


    

    class Supply extends Resource implements Wizard
    { 
        return [  
            (new Step(__('Step One'), [      

                // some fields


            ])->withToolbar()


            new Step('Step Two', [
            ]),

            new Step(__('Step Three'), function() {
                return [
                ];
            }),
        ];
    }

Now; your source automatically displays wizard form to you.

Storing

By default; each step, except the last, will store in the session. if you need to store data into the database after a specific step you should call the Checkpoint method on that step. now, checkpoint step and all steps after it will be store in the DB.

Ignore Wizard On Update

For ignoring wizard-form on the update page, your resource should implement the Zareismail\NovaWizard\Contracts\IgnoreUpdateWizard.

Star History Chart