الصفحات · Laravilt
Wizard
Multi-step form workflow
Multi-step form interface.
Basic Usage
php
Step with Icon
php
Skippable Wizard
php
Custom Button Labels
php
Wizard Methods
| Method | Description |
|---|---|
make(string) | Create wizard |
steps(array) | Set step array |
skippable(bool) | Allow step skipping |
submitButtonLabel(string|Closure) | Submit text |
nextButtonLabel(string|Closure) | Next text |
previousButtonLabel(string|Closure) | Previous text |
getSteps() | Get steps array |
Step Methods
| Method | Description |
|---|---|
make(string) | Create step |
label(string|Closure) | Step label |
description(string|Closure) | Step description |
icon(string|Closure) | Lucide icon |
schema(array) | Step content |
getLabel() | Get label |
getDescription() | Get description |
getIcon() | Get icon |
getSchema() | Get schema |
Complete Example
php