Skip to content

Instantly share code, notes, and snippets.

@betawax
Created November 20, 2013 09:32
Show Gist options
  • Save betawax/7560334 to your computer and use it in GitHub Desktop.
Save betawax/7560334 to your computer and use it in GitHub Desktop.
Laravel file download
$response = Response::make(file_get_contents($path));
$response->header('Content-Type', 'application/octet-stream');
$response->header('Content-Transfer-Encoding', 'binary');
$response->header('Content-Disposition', 'attachment; filename='.basename($path));
$response->header('Content-Length', filesize($path));
@PRINCEO4PEACE
Copy link

PLEASE, I NEED HELP ON HOW TO INSTALL AND USE LARAVEL PHP FRAMEWORK. I TRIED USING IT BUT IT WASN'T WORKING PROPERLY. THANK YOU IN ADVANCE.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment