In the config/filesytems.php, the default settings is like this
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
],
Now, in development, there's only 1 bucket shared by all developers.
Is it possible to add a prefix (as a subfolder) to the config file?
For example
's3' => [
...
'prefix' => 'jslim/',
],
How can I achieve this?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire