Download-A-File-in-Laravel-Using-a-Url-to-Extern-Resource

<?php

Route::get('/', function () {
    return response()->streamDownload(function () {
        echo file_get_contents('https://my.remote.com/file/store-12345.jpg');
    }, 'nice-name.jpg');
});
ssbrar