How to Create Zip File and Download in Laravel 7/6?
https://www.itsolutionstuff.com/post/how-to-create-zip-file-and-download-in-laravel-6example.html
Last updated
https://www.itsolutionstuff.com/post/how-to-create-zip-file-and-download-in-laravel-6example.html
Last updated
By Hardik Savani September 27, 2019 Category : LaravelPlayUnmuteLoaded: 1.15%FullscreenIn this tutorial, i am writing example of laravel 7/6 create zip archive file and download in response. i will give you example step by step how to create zip file from folder and download in laravel 7/6. we will create zip file using ziparchive class in php laravel 7/6 application.
I also post few months ago how to create zip file using composer package in laravel 5. if you want to create zip file using another composer package then you can follow this tutorial: Laravel 5 create and download zip file example using zipper.
But i will highly recommended to create zip archive file without using anymore composer package, because you can easily make zip file using php ziparchive class. ziparchive class provide method to add files so you can easily add files with relative path, so you can easily create folder inside your zip file.
In this post, i will show you how to create very simple way to zip file in laravel 6 application. So let's follow few things and make it simple example.
Step 1: Create Route
First thing is we put one route in one for download created zip file. So simple add both routes in your route file.
routes/web.php
Step 2: Create Controller
Same things as above for route, here we will add one new method for route. downloadZip() will generate new zip file and download as response, so let's add bellow:
app/Http/Controllers/ZipController.php
Ok now you can run project and open that route like.
But make sure you have "myFiles" folder in public directory and add some pdf files on that file so it will create zip file with those files.
Now you can test it by using following command:
Now you can open bellow URL on your browser:
Read Also: How to Send Mail in Laravel 6?
I hope it can help you...