Re: Upload to AWS S3

See all posts See thread Reply

Re: Upload to AWS S3 new!
by Hansajith, 1 year, 7 months ago
This works...

$return_content = $handle->process();
 if ($handle->processed) {
  Storage::put($path . $handle->file_dst_name, $return_content);
  $handle->clean();
  return $handle->file_dst_name;
} else {
  throw new Error("Error Processing Request", $handle->error);
}
Reply