Skip to content

Instantly share code, notes, and snippets.

@doulmi
Last active November 30, 2017 15:44
Show Gist options
  • Save doulmi/f450077cddeeddca7dd42c5fde949553 to your computer and use it in GitHub Desktop.
Save doulmi/f450077cddeeddca7dd42c5fde949553 to your computer and use it in GitHub Desktop.
Laravel download formated json file
$aides = Aide::all();
File::put('aides/aides.json', $aides->toJson(JSON_PRETTY_PRINT));
return response()->download('aides/aides.json', 'aides.json');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment