file('file'); // 存储文件到腾讯云COS $path='uploads/' .date('Ym/d/'). $file->getClientOriginalName();//文件相对路径 Storage::put($path, file_get_contents($file->getRealPath())); // 返回响应 return response()->json([ 'message' => 'File uploaded successfully.', 'path' => $path, ]); } public function download(DownloadRequest $request) { $url=$request->url; return Storage::download($url); } }