Skip to content

Instantly share code, notes, and snippets.

@AhmedHelalAhmed
Created February 22, 2020 22:10
Show Gist options
  • Select an option

  • Save AhmedHelalAhmed/a98cd5b623d626438f9686134bbcbfe3 to your computer and use it in GitHub Desktop.

Select an option

Save AhmedHelalAhmed/a98cd5b623d626438f9686134bbcbfe3 to your computer and use it in GitHub Desktop.
files in laravel
use Illuminate\Support\Facades\Storage;
// this will clear the file and put hello world
Storage::disk('local')->put('html.txt','hello world');
// this will append to the file
Storage::disk('local')->append('html.txt','hamada');
@AhmedHelalAhmed
Copy link
Author

Storage::disk('local')->get('html.txt');

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