Action::make('formModal')
->form([
\Filament\Forms\Components\TextInput::make('name')->rules('required')->markAsRequired(),
])
->modalSubmitAction(false) // Disable default submit button
->extraModalFooterActions([
Action::make('confirmAction')
// PROBLEM: This hook is never called.
->before(function () {
// I want to validate the 'name' field here,
// but this code never runs.
dd('This is never reached');
})
->action(function () {
// This runs without validation.
}),
]),
Action::make('formModal')
->form([
\Filament\Forms\Components\TextInput::make('name')->rules('required')->markAsRequired(),
])
->modalSubmitAction(false) // Disable default submit button
->extraModalFooterActions([
Action::make('confirmAction')
// PROBLEM: This hook is never called.
->before(function () {
// I want to validate the 'name' field here,
// but this code never runs.
dd('This is never reached');
})
->action(function () {
// This runs without validation.
}),
]),