我正在检索API响应,并使用本地存储将其存储在.csv文件中。
检索数据并将其存储在文件系统上。我可以看到并打开文件。当我尝试使用Laravel-Excel类中的文件时。我得到-在路径中找不到文件-错误。错误中显示的路径正确。
我正在使用Laragon作为本地Windows开发平台。
我已经尝试过将Storage :: disk('public')-> path($ filename))作为Storage :: disk('public')-> get($ filename)方法
$filename = 'leerlingen'.rand(0,999).".csv";
Storage::disk('public')->put($filename, $this->SoapClient->GetCSVData($this->auth,'allnSCIS',$params,true,';'));
//here I'm trying to use the file in the import method of the Excel class
Excel::import(new LeerlingenImport,Storage::disk('public')->path($filename));