PHPackages                             jeffersongoncalves/laravel-livewire-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. jeffersongoncalves/laravel-livewire-wizard

ActiveLibrary

jeffersongoncalves/laravel-livewire-wizard
==========================================

Build multi-step wizards using Livewire 3.

1.0.0(today)10MITPHPPHP ^8.2CI failing

Since Jul 30Pushed today1 watchersCompare

[ Source](https://github.com/jeffersongoncalves/laravel-livewire-wizard)[ Packagist](https://packagist.org/packages/jeffersongoncalves/laravel-livewire-wizard)[ Docs](https://github.com/jeffersongoncalves/laravel-livewire-wizard)[ GitHub Sponsors](https://github.com/jeffersongoncalves)[ RSS](/packages/jeffersongoncalves-laravel-livewire-wizard/feed)WikiDiscussions main Synced today

READMEChangelog (2)Dependencies (12)Versions (2)Used By (0)

Laravel Livewire Wizard
=======================

[](#laravel-livewire-wizard)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1d4dc643b6f66c9b9e13f965d8e132c3b9ed3dbc1edf4a578b39b05027c6509e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6566666572736f6e676f6e63616c7665732f6c61726176656c2d6c697665776972652d77697a6172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/laravel-livewire-wizard)[![Tests](https://camo.githubusercontent.com/eb7ff4f8a5ac4a993f24c97360dd4630de74a010f2909842456a2f7ad3637704/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f6c61726176656c2d6c697665776972652d77697a6172642f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/laravel-livewire-wizard/actions/workflows/run-tests.yml)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/4672d4f47f2e961e6a2cd9165d80e557a42d19362f05b62e220328ae62f0a70b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f6c61726176656c2d6c697665776972652d77697a6172642f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/laravel-livewire-wizard/actions/workflows/fix-php-code-style-issues.yml)[![Total Downloads](https://camo.githubusercontent.com/24429e267fe6608347b7c22caa5b84a6e72cbf39c5f886c9b688768a641665df/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6566666572736f6e676f6e63616c7665732f6c61726176656c2d6c697665776972652d77697a6172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/laravel-livewire-wizard)[![License](https://camo.githubusercontent.com/9555f0dba5930e885e598cb1a45e3a6ac53d1ab1924e480797638b59847918e9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6a6566666572736f6e676f6e63616c7665732f6c61726176656c2d6c697665776972652d77697a6172642e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

A maintained fork of [`spatie/laravel-livewire-wizard`](https://github.com/spatie/laravel-livewire-wizard) v2, kept compatible with **Livewire 3** and **Laravel 11/12/13**. Build multi-step wizards where each step is its own Livewire component, state flows between steps automatically, and navigation is a method call away.

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11, 12, or 13
- Livewire 3

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

[](#installation)

```
composer require jeffersongoncalves/laravel-livewire-wizard
```

Usage
-----

[](#usage)

### 1. Create the wizard component

[](#1-create-the-wizard-component)

```
namespace App\Livewire;

use JeffersonGoncalves\LivewireWizard\Components\WizardComponent;

class CheckoutWizardComponent extends WizardComponent
{
    public function steps(): array
    {
        return [
            CartStepComponent::class,
            DeliveryAddressStepComponent::class,
            ConfirmOrderStepComponent::class,
        ];
    }
}
```

### 2. Create each step

[](#2-create-each-step)

Each step is a regular Livewire component that extends `StepComponent`:

```
namespace App\Livewire;

use JeffersonGoncalves\LivewireWizard\Components\StepComponent;

class CartStepComponent extends StepComponent
{
    public function render()
    {
        return view('checkout-wizard.steps.cart');
    }
}
```

### 3. Register the components

[](#3-register-the-components)

```
use Livewire\Livewire;

Livewire::component('checkout-wizard', CheckoutWizardComponent::class);
Livewire::component('cart-step', CartStepComponent::class);
Livewire::component('delivery-address-step', DeliveryAddressStepComponent::class);
Livewire::component('confirm-order-step', ConfirmOrderStepComponent::class);
```

### 4. Render the wizard

[](#4-render-the-wizard)

```

```

### 5. Navigate between steps

[](#5-navigate-between-steps)

From inside any step component:

```
$this->nextStep();
$this->previousStep();
```

Or directly in a view:

```
Back
Next
```

State set via public properties on one step is automatically available on the next. See the original [Spatie docs](https://github.com/spatie/laravel-livewire-wizard/tree/2.4.3/docs) for the full guide on initial state, custom state objects, and testing wizards — the v2/Livewire 3 API this package tracks is unchanged.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

Security
--------

[](#security)

If you discover any security-related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Jefferson Gonçalves](https://github.com/jeffersongoncalves)
- Originally created by [Freek Van der Herten](https://github.com/freekmurze) and [Rias Van der Veken](https://github.com/riasvdv) at [Spatie](https://spatie.be)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance100

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

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

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/411493?v=4)[Jefferson Gonçalves](/maintainers/jeffersongoncalves)[@jeffersongoncalves](https://github.com/jeffersongoncalves)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (5 commits)")

---

Tags

laravellivewiremulti-step-formphpwizardlaravellivewirewizardmulti-step-form

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/jeffersongoncalves-laravel-livewire-wizard/health.svg)

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

###  Alternatives

[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

728176.2k14](/packages/tallstackui-tallstackui)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

813336.8k3](/packages/defstudio-telegraph)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.3M348](/packages/psalm-plugin-laravel)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

45955.7k](/packages/harris21-laravel-fuse)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5022.6k](/packages/simplestats-io-laravel-client)

PHPackages © 2026

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