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