Wizard::make($steps)
->columnSpanFull()
->nextAction(function (Action $action): void {
$action
->label('Continue');
// how to get current step number here
if ($currentStepNumber === 1) {
// w-full doesn't work too
$action->extraAttributes(['class' => 'w-full']);
}
});