Changeset c6b84df for config/filesystems.php
- Timestamp:
- 10/21/21 23:45:59 (3 years ago)
- Branches:
- develop, master
- Children:
- 4b7e2d3
- Parents:
- 6b95845
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
config/filesystems.php
r6b95845 rc6b84df 33 33 'local' => [ 34 34 'driver' => 'local', 35 'root' => storage_path('app'),35 'root' => public_path() . DIRECTORY_SEPARATOR . 'uploads', 36 36 'permissions' => [ 37 37 'file' => [ … … 48 48 'image-uploads' => [ 49 49 'driver' => 'local', 50 'root' => public_path() . '/assets/images/uploads',50 'root' => public_path() . DIRECTORY_SEPARATOR .'assets' . DIRECTORY_SEPARATOR . 'images' . DIRECTORY_SEPARATOR . 'uploads' 51 51 ], 52 52
Note:
See TracChangeset
for help on using the changeset viewer.