Laravel 5 Multiple Download File

Thailand Love U

This code will work correctly if I open browser at 127.0.0.1/load/files. (Auto Download File)

ABCController.php

namespace App\Http\Controllers;

use Response;
use File;

function download_file(){
    return Response::download(public_path() . "/files/file_1.txt");
}

routes.php

Route::get('/load/files','ABCController@download_file');

Can I use 1 route and 1 function for download 2 files at the same time ? Such as

function download_file(){
    return Response::download(["file_1.txt","file_2.txt"]); //this code not right
}

Thank you for any help.

Elias

It is not possible to send more than one file simultaneously over the same request with the HTTP protocol. Laravel also does not support this. You have to pack the files in, for example, a zip file.

Also see

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Laravel 5 Multiple Download File

From Dev

Laravel 5 Force Download a pdf File

From Dev

Laravel 5 - File Download failed issue

From Dev

File download angular and Laravel

From Dev

multiple route file instead of one main route file in laravel 5

From Dev

Laravel 5 - Defining middleware for multiple routes in controller file

From Dev

Download And Mail Excel File Laravel

From Dev

How to download a file in laravel 5.4

From Dev

Download a file and pipe to multiple commands

From Dev

Creating zip of multiple files and download in laravel

From Dev

Download a file in Laravel using a URL to external resource

From Dev

Backup and download .sql file Laravel 4

From Dev

download file from array improper output in laravel

From Dev

How to rename file before ->download() with Laravel Excel

From Dev

Force File (PDF) Download in Laravel 4

From Dev

Laravel & Beanstalkd - File Copy / Download Error

From Dev

POST request to Laravel then download string as a file

From Dev

Not able to download csv file in php laravel

From Dev

Laravel 5.4 download csv file is not working

From Dev

ChromeDriver Laravel Dusk Set Download File Path

From Dev

Download multiple files using "download.file" function

From Dev

Adding child progress for multiple file download

From Dev

Javascript download multiple files and concatenate into a single file

From Dev

Open (download) file with multiple dots in name

From Dev

Prevent multiple connections while file download in php

From Dev

Trying to create a zip file to download multiple pictures

From Dev

Download multiple .txt files into .zip file with PHP

From Dev

Browser is cancelling multiple file download requests

From Dev

Laravel 5: Updating Multiple Records

Related Related

  1. 1

    Laravel 5 Multiple Download File

  2. 2

    Laravel 5 Force Download a pdf File

  3. 3

    Laravel 5 - File Download failed issue

  4. 4

    File download angular and Laravel

  5. 5

    multiple route file instead of one main route file in laravel 5

  6. 6

    Laravel 5 - Defining middleware for multiple routes in controller file

  7. 7

    Download And Mail Excel File Laravel

  8. 8

    How to download a file in laravel 5.4

  9. 9

    Download a file and pipe to multiple commands

  10. 10

    Creating zip of multiple files and download in laravel

  11. 11

    Download a file in Laravel using a URL to external resource

  12. 12

    Backup and download .sql file Laravel 4

  13. 13

    download file from array improper output in laravel

  14. 14

    How to rename file before ->download() with Laravel Excel

  15. 15

    Force File (PDF) Download in Laravel 4

  16. 16

    Laravel & Beanstalkd - File Copy / Download Error

  17. 17

    POST request to Laravel then download string as a file

  18. 18

    Not able to download csv file in php laravel

  19. 19

    Laravel 5.4 download csv file is not working

  20. 20

    ChromeDriver Laravel Dusk Set Download File Path

  21. 21

    Download multiple files using "download.file" function

  22. 22

    Adding child progress for multiple file download

  23. 23

    Javascript download multiple files and concatenate into a single file

  24. 24

    Open (download) file with multiple dots in name

  25. 25

    Prevent multiple connections while file download in php

  26. 26

    Trying to create a zip file to download multiple pictures

  27. 27

    Download multiple .txt files into .zip file with PHP

  28. 28

    Browser is cancelling multiple file download requests

  29. 29

    Laravel 5: Updating Multiple Records

HotTag

Archive