PHPackages                             armincms/wizard - 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. armincms/wizard

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

armincms/wizard
===============

The wizard form for the laravel nova.

0.1.1(6y ago)77151MITVuePHP &gt;=7.1.0

Since Jan 19Pushed 6y ago1 watchersCompare

[ Source](https://github.com/armincms/wizard)[ Packagist](https://packagist.org/packages/armincms/wizard)[ RSS](/packages/armincms-wizard/feed)WikiDiscussions master Synced 6d ago

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

This package is archived. please use the [Nova Wizard](https://github.com/zareismail/nova-wizard) package instead of it.
------------------------------------------------------------------------------------------------------------------------

[](#this-package-is-archived-please-use-the-nova-wizard-package-instead-of-it)

wizard
======

[](#wizard)

The wizard form for the laravel nova

##### Table of Contents

[](#table-of-contents)

- [Introduction](#introduction)
- [Installation](#installation)
- [Resource Configurations](#resource-configurations)
- [About Implementation](#about-implementation)

Introduction
------------

[](#introduction)

The `wizard` gives you the ability to creating or updating a resource step by step via validating each step.

Installation
------------

[](#installation)

To get started with Bios run the below command:

```
    composer require armincms/wizard

```

Resource Configurations
-----------------------

[](#resource-configurations)

If you want to use wizard form for editing a resource; must add the following method into the resource:

```
    /**
     * Get meta information about this resource for client side comsumption.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public static function additionalInformation(Request $request)
    {
        return ['wizard' => true];
    }

```

Then for defining the steps can use `Armincms\Wizard\Step` like the following example:

```

use Armincms\Wizard\Step;

calss MyResource extends Resource
{
    /**
     * Get the fields displayed by the resource.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function fields(Request $request)
    {
    	return [
    		// some fields

    		Step::make('Step One', [
    			// step one fields
    		]),

    		Step::make('Step Two', [
    			// step two fields
    		]),

    		Step::make('Step Three', [
    			// step three fields
    		]),
    	];
    }
}

```

Now; your resource automaticaly display wizard form to you.

About Implementation
--------------------

[](#about-implementation)

Under the hood; `Armincms \ Wizard \ Step` is a panel. so when going to the next step; all fields in that panel and previous steps should pass the validation rules. If validation fails; the first panel that contains an unvalidated attribute will be displayed.

If you want to validation some fields on each step, you should define those fields without an `Armincms\Wizard\Step`. like the following:

```

use Armincms\Wizard\Step;

calss MyResource extends Resource
{
    /**
     * Get the fields displayed by the resource.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function fields(Request $request)
    {
    	return [

    		// bellow fields will be validated per each step

    		Text::make("Text"),

    		Text::make("Test"),

    		// and some other fields

    		// bellow fields will be validated on the active step

    		Step::make('Step One', [
    			// step one fields
    		]),

    		Step::make('Step Two', [
    			// step two fields
    		]),

    		Step::make('Step Three', [
    			// step three fields
    		]),
    	];
    }
}

```

[![wizard 1](/w1.png)](/w1.png)[![wizard 2](/w2.png)](/w2.png)[![wizard 3](/w3.png)](/w3.png)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

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

Every ~2 days

Total

2

Last Release

2308d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/188c6af1615930311adb86de0f0f1e9241b3306d8f7680c385caa6aa0810ca48?d=identicon)[zareismail](/maintainers/zareismail)

---

Top Contributors

[![zareismail](https://avatars.githubusercontent.com/u/23401061?v=4)](https://github.com/zareismail "zareismail (10 commits)")

---

Tags

laraveltoolformwizardnovaarmincms

### Embed Badge

![Health badge](/badges/armincms-wizard/health.svg)

```
[![Health](https://phpackages.com/badges/armincms-wizard/health.svg)](https://phpackages.com/packages/armincms-wizard)
```

###  Alternatives

[armincms/json

A Laravel Nova field.

25149.4k3](/packages/armincms-json)[armincms/many-to-many

A Laravel Nova field.

2574.7k3](/packages/armincms-many-to-many)[cendekia/nova-setting-tool

An app setting manager tool for laravel nova

4010.5k](/packages/cendekia-nova-setting-tool)

PHPackages © 2026

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