9f3ba05880
* Fix Contracts class names * Refactoring of the file seeds so it's not a mess * StyleCI fixes
37 lines
838 B
PHP
Executable File
37 lines
838 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
'default' => 'local',
|
|
|
|
// This is the filesystem the uploaded files should go to
|
|
'public_files' => 'public',
|
|
'cloud' => 's3',
|
|
'disks' => [
|
|
|
|
'local' => [
|
|
'driver' => 'local',
|
|
'root' => storage_path('app'),
|
|
],
|
|
|
|
'seeds' => [
|
|
'driver' => 'local',
|
|
'root' => database_path('seeds'),
|
|
],
|
|
|
|
'public' => [
|
|
'driver' => 'local',
|
|
'root' => public_path('uploads'),
|
|
'url' => '/uploads',
|
|
'visibility' => 'public',
|
|
],
|
|
|
|
's3' => [
|
|
'driver' => 's3',
|
|
'key' => 'your-key',
|
|
'secret' => 'your-secret',
|
|
'region' => 'your-region',
|
|
'bucket' => 'your-bucket',
|
|
],
|
|
],
|
|
];
|