[Vuejs]-Store blob as a file in S3 with Laravel

0👍

Try by replacing this:

Storage::disk('s3')->put($filename, $file['blob']);

with this:

Storage::disk('s3')->put($filename, base64_decode($file['blob']));

Leave a comment