Skip to content

Instantly share code, notes, and snippets.

@marchampson
Last active August 29, 2015 14:07
Show Gist options
  • Save marchampson/a733883a0a9f3112151d to your computer and use it in GitHub Desktop.
Save marchampson/a733883a0a9f3112151d to your computer and use it in GitHub Desktop.
Laravel download respsonse type
<?php
// app/routes.php
Route::get('file/download', function()
{
$file = 'path_to_my_file.pdf';
return Response::download($file, 418, array('iron', 'man'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment