Created
February 22, 2020 22:10
-
-
Save AhmedHelalAhmed/a98cd5b623d626438f9686134bbcbfe3 to your computer and use it in GitHub Desktop.
files in laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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'); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Storage::disk('local')->get('html.txt');