📅  最后修改于: 2022-03-11 14:54:25.158000             🧑  作者: Mango
// Products controller
use Illuminate\Support\Facades\Storage;
$image = $request->file('image');
$filePath = 'images/' . $image->getClientOriginalName();
Storage::disk('s3')->put($filePath, file_get_contents($image), 'public');