Salar
Salar

Reputation: 5509

laravel excel download and parse file from URL

I'm using Laravel excel package version 2 and want to download an excel file from a given URL. The function Excel::download was added in version 3. is there any way to still download excel files in version 2? maybe using file_get_contents() function from PHP itself.

Upvotes: 0

Views: 2155

Answers (1)

Elie
Elie

Reputation: 321

From the Maatwebsite/Excel documentation:

Excel::create('Filename', function($excel) {

    })->export('xls');

    // or
    ->download('xls');

https://laravel-excel.maatwebsite.nl/2.1/export/export.html

Upvotes: 2

Related Questions