->headerActions([
Tables\Actions\Action::make('sendMoney')
->form([
//...
TextInput::make('amount'),
])
->action(function (array $data, array $arguments, Page $livewire) {
$livewire->replaceMountedAction('sendMoneyConfirmation');
}),
])
->headerActions([
Tables\Actions\Action::make('sendMoney')
->form([
//...
TextInput::make('amount'),
])
->action(function (array $data, array $arguments, Page $livewire) {
$livewire->replaceMountedAction('sendMoneyConfirmation');
}),
])