Wizard\Step::make('Products')
->schema(function (Get $get) {
return match ($get('flowType')) {
'product' => [],
'service' => [ CheckboxList::make('flowInterests')
->label('What data are you interested in from a user')
->required()
->bulkToggleable()
->options([
'name' => 'Name',
'email' => 'Email',
'address' => 'Address',
'company' => 'Company',
'phone' => 'Phone number',
])
};
}),
Wizard\Step::make('Products')
->schema(function (Get $get) {
return match ($get('flowType')) {
'product' => [],
'service' => [ CheckboxList::make('flowInterests')
->label('What data are you interested in from a user')
->required()
->bulkToggleable()
->options([
'name' => 'Name',
'email' => 'Email',
'address' => 'Address',
'company' => 'Company',
'phone' => 'Phone number',
])
};
}),