Skip to content

Instantly share code, notes, and snippets.

@nivv
Created March 14, 2016 10:42
Show Gist options
  • Save nivv/d4522b6d5152dcf36275 to your computer and use it in GitHub Desktop.
Save nivv/d4522b6d5152dcf36275 to your computer and use it in GitHub Desktop.
serve download contents
public function downloadFile($id)
{
$file = File::findOrFail($id);
$contents = \Illuminate\Support\Facades\Storage::getDriver()->get('/'.$file->path);
return response()->download($contents, $file->name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment