You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public function downloadASpreadsheet(): Response {
19
+
$spreadsheet = new Spreadsheet();
20
+
// building the spreadsheet...
21
+
return new SpreadsheetResponse($spreadsheet, "My spreadsheet.xlsx");
22
+
}
23
+
}
24
+
```
25
+
26
+
27
+
## Installation
28
+
This library is available through [Packagist](https://packagist.org/packages/codeinc/symfony-phpspreadsheet-response) and can be installed using [Composer](https://getcomposer.org/):
0 commit comments