Download-a-File-File-Using-Using-A-Url-to-External-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