public function getDownload($name){
$file = storage_path().'/cv/'.$name; //error here
$headers = array(
'Content-Description' => 'File Transfer',
'Content-Type' => 'application/pdf',
);
return Response::download($file, $headers);
}
我只想在一个变量中连接所有内容。所有参数都是字符串。 下面是两个变量storage_path()和$ name的一个var_dump()。
答案 0 :(得分:0)
如果您要查看请求工厂的下载方法,您会发现缺少参数。
public function download($file, $name = null, array $headers = array(), $disposition = 'attachment');