Where is the File::put() stored in Laravel?
laravel, php
Solution
To store files in folder `storage/app`, you must use `Storage` class as:
Storage::disk('local')->put('file.txt', 'Contents');
then it would store a file in `storage/app/file.txt`.
Docs
Problem
I have a question relating to Laravel, where is the `File::put()` stored in Laravel? I have checked inside `storage/app/public` and the content isn't there.