TextInput::make('name')->live(debounce: 500)->label('name')->hintAction(
Action::make('generate')
->icon('heroicon-o-arrow-path')
->form([
TextInput::make('Keywords')->nullable(),
])->action(function (Set $set) {
// do something
})
)->required()
TextInput::make('name')->live(debounce: 500)->label('name')->hintAction(
Action::make('generate')
->icon('heroicon-o-arrow-path')
->form([
TextInput::make('Keywords')->nullable(),
])->action(function (Set $set) {
// do something
})
)->required()