Tables\Actions\CreateAction::make()
->mutateFormDataUsing(function (array $data) {
unset($data['setoran_id']);
return $data;
})->after(function (array $data) {
// I want to use $data['setoran_id'] in here..
}),
Tables\Actions\CreateAction::make()
->mutateFormDataUsing(function (array $data) {
unset($data['setoran_id']);
return $data;
})->after(function (array $data) {
// I want to use $data['setoran_id'] in here..
}),