- Timestamp:
- 10/24/21 23:23:54 (3 years ago)
- Branches:
- develop, master
- Children:
- df6e9ec
- Parents:
- fa80fbe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
config/filesystems.php
rfa80fbe r94f05dc 33 33 'local' => [ 34 34 'driver' => 'local', 35 'root' => public_path() . DIRECTORY_SEPARATOR . 'uploads',35 'root' => storage_path() . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public', 36 36 'permissions' => [ 37 37 'file' => [ … … 53 53 'public' => [ 54 54 'driver' => 'local', 55 'root' => storage_path( 'app/public'),55 'root' => storage_path() . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public', 56 56 'url' => env('APP_URL').'/storage', 57 57 'visibility' => 'public', … … 60 60 'uploads' => [ 61 61 'driver' => 'local', 62 'root' => public_path() . '/uploads',62 'root' => storage_path() . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public', 63 63 ], 64 64
Note:
See TracChangeset
for help on using the changeset viewer.