Action::make('i-r')
->button()
->form([
FileUpload::make('r')
->disk('s3')
->directory('tmp')
->visibility('private')
])
->action(function (array $data): void {
if ($data['r'] === null) {
Log::error("Uploading Failed!");
return;
}
dispatch(... job that gets the file and process it);
}),
Action::make('i-r')
->button()
->form([
FileUpload::make('r')
->disk('s3')
->directory('tmp')
->visibility('private')
])
->action(function (array $data): void {
if ($data['r'] === null) {
Log::error("Uploading Failed!");
return;
}
dispatch(... job that gets the file and process it);
}),