如何同时下载两个pdf文件

ikfrs5lh  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(416)

当我点击按钮时,我想下载收据和余额PDF。目前,在这两个pdf只有一个pdf收据.pdf正在生成(我需要生成两者)。我的代码:

$pdf = PDF::loadView('receipt',$data);

$pdf2 = PDF::loadView('balance',$data);

return $pdf->download("receipt.pdf");// only receipt pdf generates

return $pdf2->download("balance.pdf");
nhaq1z21

nhaq1z211#

你必须下载一个.zip文件。试试这个:

$file = file_get_contents('url_provided_by_the_user');
$destinationPath = public_path() . '/location/to/save/'.$filename . '.extension';
file_put_contents($destinationPath, $file);
}

相关问题