Скачать-а-файл-в-ларавел-USING-A-URL-EXTERNAL-RESORCE
<?php
Route::get('/', function () {
return response()->streamDownload(function () {
echo file_get_contents('https://my.remote.com/file/store-12345.jpg');
}, 'nice-name.jpg');
});
ssbrar