16. Các loại response khác Streamed download (Other response types)(ok)
https://viblo.asia/p/tap-17-response-laravel-aWj534RGK6m
return response()->streamDownload(Closure, $nameFile, $headers);Route::get('/stream', function() {
return response()->streamDownload(function() {
echo 'Lê Chí Huy';
}, 'users.txt');
});Previous15. Các loại response khác Download file (Other response types)(ok)Next17. Các loại response khác Streamed download (Other response types)(ok)
Last updated