Skip to content

Instantly share code, notes, and snippets.

@VassilisPallas
Created March 2, 2017 12:53
Show Gist options
  • Save VassilisPallas/7d85bf8fcc4429f8b897348c96867652 to your computer and use it in GitHub Desktop.
Save VassilisPallas/7d85bf8fcc4429f8b897348c96867652 to your computer and use it in GitHub Desktop.
Download file with Laravel
public function getDownload()
{
$file = public_path() . "/download/info.pdf";
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// .pdf -> application/pdf
//
// .doc -> application/msword
//
// .docx -> application/vnd.openxmlformats-officedocument.wordprocessingml.document
//
// .xls -> application/vnd.ms-excel
//
// .xlsx -> application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
//
// .gif -> image/gif
//
// .png -> image/png
//
// .jpeg -> image/jpg
//
// .jpg -> image/jpg
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
$headers = array(
'Content-Type: application/pdf',
);
return response()->download($file, 'filename.pdf', $headers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment