lenderspender / laravel-wizard
Control web steps using a wizard.
Installs: 24 579
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 0
Open Issues: 3
Requires
- php: ^8.2
- laravel/framework: ^12.0 | ^11.0 | ^10.0
Requires (Dev)
- lenderspender/php-cs-fixer-rules: dev-master
- mockery/mockery: ^1.4.2
- orchestra/testbench: ^10.0
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^1.5.0
- phpstan/phpstan-mockery: 1.1.0
- phpunit/phpunit: ^11.0
- dev-master
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.0.0
- 1.3.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.0
- dev-laravel-12
- dev-tijmen/first-step-is-nullable
- dev-laravel-11
- dev-dependabot/github_actions/actions/cache-3.3.1
- dev-dependabot/composer/phpstan/phpstan-mockery-1.1.1
- dev-LSP-2266-upgrade-to-php-unit-10-in-laravel-wizard
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-4.16.0
- dev-LSP-2224-upgrade-to-laravel-10-in-laravel-wizard
- dev-LSP-1021-php-8
This package is auto-updated.
Last update: 2025-03-26 14:23:52 UTC
README
Laravel wizard is an easy way to create a clear way of conditional steps.
Installation
You can install the package via composer:
composer require lenderspender/laravel-wizard
Usage
Creating steps
A step is where the logic and view for that particular step is defined. Steps can also be conditional.
You are able to inject any dependencies you need into the step's view
and store
methods. The Laravel service container will automatically inject all dependencies that are type-hinted.
<?php declare(strict_types=1); namespace App\Http\Controllers; use Illuminate\Contracts\Auth\Authenticatable; use Illuminate\Http\Request; use LenderSpender\LaravelWizard\StepDetails; use LenderSpender\LaravelWizard\WizardStep; use Symfony\Component\HttpFoundation\Response; class FirstStep extends WizardStep { public function view(): Response { return view('steps.first-step'); } public function store(Request $request): void { $data = $request->validate([ 'foo' => 'required', ]); SomeModel::update(['foo' => $data['foo']]); } public function getStepDetails(): StepDetails { return new StepDetails('First step', 'This is the first step', 'first-step'); } public function isCompleted(?Authenticatable $user): bool { return true; } public function isRequired(?Authenticatable $user): bool { return true; } }
Throwing additional errors
Sometimes you wish to throw additional errors. When the StoreStepException
is thrown from the store
method in your step.
Users are automatically redirected back to the previous page with errors.
use LenderSpender\LaravelWizard\Exceptions\StoreStepException; public function store(Authenticatable $user) { if (! $user->emailVerified()) { throw new StoreStepException('Email address is not yet verified'); } $user->update(['foo' => 'bar']); }
Setup controller and routes
Create a new Controller that will handle your steps.
<?php declare(strict_types=1); namespace App\Http\Controllers; use Illuminate\Contracts\Auth\Authenticatable; use LenderSpender\LaravelWizard\Wizard; use Symfony\Component\HttpFoundation\Response; class WizardController { public function show(string $step, Authenticatable $user): Response { return $this->getWizard($user) ->view($step); } public function store(string $step, Authenticatable $user): Response { $wizard = $this->getWizard($user); if ($redirect = $wizard->store($step)) { return $redirect; } return redirect(action( [WizardController::class, 'show'], [ 'step' => (string) $wizard->nextStep($wizard->getStepFromSlug($step)), ] )); } private function getWizard(Authenticatable $user): Wizard { return new Wizard( [ new FirstStep(), new SecondStep(), ], false, $user ); } }
Then you should define your routes:
Route::get('/wizard/{step}', [WizardController::class, 'show']); Route::post('/wizard/{step}', [WizardController::class, 'store']);
Setup wizard
A new wizard can be initialized by creating a new Wizard
object.
$wizard = new Wizard([ FirstStep::class, new FirstStep($param), [FirstStep::class => ['param' => $param]] ]);