PHPackages                             marvinrabe/laravel-wizards - 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. marvinrabe/laravel-wizards

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

marvinrabe/laravel-wizards
==========================

Simple Wizard Controller for Laravel.

0.4.0(4y ago)301.6k↓80%MITPHPPHP &gt;=8.0.0

Since Feb 9Pushed 3y ago2 watchersCompare

[ Source](https://github.com/marvinrabe/laravel-wizards)[ Packagist](https://packagist.org/packages/marvinrabe/laravel-wizards)[ Docs](https://github.com/marvinrabe/laravel-wizards)[ RSS](/packages/marvinrabe-laravel-wizards/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (4)Versions (6)Used By (0)

Laravel Wizards
===============

[](#laravel-wizards)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4d160aa975a891ccc8475ca7ce66a13931395411fe54d2d9b2bc4475e63aaf04/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d617276696e726162652f6c61726176656c2d77697a617264732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/marvinrabe/laravel-wizards)[![GitHub Tests Action Status](https://camo.githubusercontent.com/2919974b84af629c72fbbc33b690706b4a5130fee42f2e8d4a71e18d270a2050/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d617276696e726162652f6c61726176656c2d77697a617264732f72756e2d74657374732e796d6c3f6272616e63683d6d6173746572)](https://github.com/marvinrabe/laravel-wizards/actions?query=workflow%3ATests+branch%3Amaster)[![Total Downloads](https://camo.githubusercontent.com/67ca83e9c0e897f4269a89cb4c95b19e08b8ff18aae47b6bbe3a1e65772b8db3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d617276696e726162652f6c61726176656c2d77697a617264732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/marvinrabe/laravel-wizards)

Simple Wizard Controller for Laravel. If you need a more sophisticated solution, then have a look at [Laravel Aracanist](https://laravel-arcanist.com).

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

[](#installation)

Install this package via composer:

```
composer require marvinrabe/laravel-wizards
```

Usage
-----

[](#usage)

Register a route using the `wizard` macro in your `web.php`:

```
Route::wizard('order', OrderWizardController::class);
```

Create a controller for your wizard. For example `OrderWizardController.php`:

```
