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);
}
Я просто хочу объединить все в одну переменную. Все параметры являются строковыми.
Ниже приведен один var_dump () из двух переменных storage_path () и $ name.
Если вы посмотрите на метод загрузки фабрики запросов, вы обнаружите, что у вас отсутствует параметр.
public function download($file, $name = null, array $headers = array(), $disposition = 'attachment');
Других решений пока нет …