我正在尝试下载上传的文件,但我无法找到该文件。我给出了正确的路径,但它没有下载文件。共享我上传和下载文件的代码。请告诉我更正。
上传文件代码。
$filename = $rep->getClientOriginalName();
$fileSize = $rep->getClientSize();
$rep->storeAs('/reportAttachment/',$filename);
$reportId = Report::where('reportId',$request->reportId)->first();
$reportA = new ReportAttachment;
$reportA->reportAttachmentFile = $filename;
$reportA->report_id = $reportId->id;
$reportA->save();
下载文件代码
<a href="/reportAttachment/{{$at->reportAttachmentFile}}" download="{{$at->reportAttachmentFile}}">
<button type="button" class="btn btn-primary">
<i class="glyphicon glyphicon-download">
Download
</i>
</button>
</a>
这是我的代码,请告诉我我的错误。