<?php12return [3/*4|--------------------------------------------------------------------------5| Default Filesystem Disk6|--------------------------------------------------------------------------7|8| Here you may specify the default filesystem disk that should be used9| by the framework. The "local" disk, as well as a variety of cloud10| based disks are available to your application for file storage.11|12*/1314'default' => env('FILESYSTEM_DISK', 'local'),1516/*17|--------------------------------------------------------------------------18| Filesystem Disks19|--------------------------------------------------------------------------20|21| Below you may configure as many filesystem disks as necessary, and you22| may even configure multiple disks for the same driver. Examples for23| most supported storage drivers are configured here for reference.24|25| Supported drivers: "local", "ftp", "sftp", "s3"26|27*/2829'disks' => [30'local' => [31'driver' => 'local',32'root' => storage_path('app/private'),33'serve' => true,34'throw' => false,35],3637'public' => [38'driver' => 'local',39'root' => storage_path('app/public'),40'url' => env('APP_URL') . '/storage',41'visibility' => 'public',42'throw' => false,43],4445's3' => [46'driver' => 's3',47'key' => env('AWS_ACCESS_KEY_ID'),48'secret' => env('AWS_SECRET_ACCESS_KEY'),49'region' => env('AWS_DEFAULT_REGION'),50'bucket' => env('AWS_BUCKET'),51'url' => env('AWS_URL'),52'endpoint' => env('AWS_ENDPOINT'),53'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),54'throw' => false,55],56],5758/*59|--------------------------------------------------------------------------60| Symbolic Links61|--------------------------------------------------------------------------62|63| Here you may configure the symbolic links that will be created when the64| `storage:link` Artisan command is executed. The array keys should be65| the locations of the links and the values should be their targets.66|67*/6869'links' => [70public_path('storage') => storage_path('app/public'),71],72];737475