use Filament\Forms;
use Filament\Tables\Actions\Action;
Action::make('wizard')
->steps([
Forms\Components\Wizard\Step::make('Step 1')
->schema([
Forms\Components\TextInput::make('foo'),
]),
Forms\Components\Wizard\Step::make('Step 2')
->schema([
Forms\Components\TextInput::make('bar'),
]),
])
use Filament\Forms;
use Filament\Tables\Actions\Action;
Action::make('wizard')
->steps([
Forms\Components\Wizard\Step::make('Step 1')
->schema([
Forms\Components\TextInput::make('foo'),
]),
Forms\Components\Wizard\Step::make('Step 2')
->schema([
Forms\Components\TextInput::make('bar'),
]),
])