Skip to content

Commit

Permalink
Fixed path to storage/app/public
Browse files Browse the repository at this point in the history
In two places the public storage folder was said to be storage/public but it is storage/app/public like it is said elsewhere in the doc, and in the official laravel/laravel repo.
  • Loading branch information
AlexDanault authored Aug 18, 2016
1 parent 3ff21af commit c476d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ When using the `local` or `s3` drivers, you may use the `url` method to get the

$url = Storage::url('file1.jpg');

> {note} Remember, if you are using the `local` driver, all files that should be publicly accessible should be placed in the `storage/public` directory. Furthermore, you should [create a symbolic link](#the-public-disk) to the `storage/public` directory.
> {note} Remember, if you are using the `local` driver, all files that should be publicly accessible should be placed in the `storage/app/public` directory. Furthermore, you should [create a symbolic link](#the-public-disk) to the `storage/app/public` directory.
<a name="file-metadata"></a>
### File Metadata
Expand Down

0 comments on commit c476d09

Please sign in to comment.