Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save michalkortas/01ae1d0705e577ed8068322760314898 to your computer and use it in GitHub Desktop.
Save michalkortas/01ae1d0705e577ed8068322760314898 to your computer and use it in GitHub Desktop.
The filename fallback must only contain ASCII characters.
<?php
$file = Storage::disk('my_storage_name')->get($originalFileName);
$response = response($file)
->withHeaders([
'Content-type' => 'application/force-download',
'Content-Transfer-Encoding' => 'Binary',
'Content-Disposition' => 'attachment;filename='.$newFileNameWithNonAsciiChars,
]);
return $response;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment