1234567891011121314151617181920212223242526 |
- <?php
- return [
-
- 'default' => env('filesystem.driver', 'public'),
-
- 'disks' => [
- 'local' => [
- 'type' => 'local',
- 'root' => app()->getRuntimePath() . 'storage',
- ],
- 'public' => [
-
- 'type' => 'local',
-
- 'root' => app()->getRootPath() . 'public/uploads',
-
- 'url' => '/uploads',
-
- 'visibility' => 'public',
- ],
-
- ],
- ];
|