Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rolldone/834050b6ff3ec62ffdf6358d9510b2f9 to your computer and use it in GitHub Desktop.
Save rolldone/834050b6ff3ec62ffdf6358d9510b2f9 to your computer and use it in GitHub Desktop.
return response()->stream(function () use ($writer) {
$writer->save('php://output');
}, 200, [
'Content-Type' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'Content-Disposition' => 'attachment',
'filename' => 'file.xlsx',
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment