s3 upload big size file

これでstreamでアップロードしてくれた

use Illuminate\Http\File;
use Illuminate\Support\Facades\Storage;

$s3client = Storage::disk('s3')

$s3client->putFileAs('/tests', new File($path), 'hoge');

murze.be