This package offers lightweight Livewire components that allow you to easily build a wizard. With "wizard" we mean a multi-step process in which each step has its own screen.
Here's how a wizard component class could look like.
A step is class that extends StepComponent (which in its turn extends Livewire\Component). You can do anything in here that you can do with a regular Livewire component.
namespaceApp\Components;
classCartStepComponentextendsStepComponent
{
// add any Livewire powered method you wantpublicfunctionrender()
{
returnview('checkout-wizard.steps.cart');
}
}