You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can we make the storage system change based on some environment variable? by default s3 is used, if you want to change to public/local or other, you will have to replace many values throughout the application?
for example:
$disk = "public"; (/storage/app/public) or config('app.default_storage_disk')
instead of use "Storage::disk('s3')", use Storage::disk($disk)
I say it because of what I saw in the code since I did not find how to change the filesystem and use my local instead of s3
thanks
The text was updated successfully, but these errors were encountered:
Can we make the storage system change based on some environment variable? by default s3 is used, if you want to change to public/local or other, you will have to replace many values throughout the application?
for example:
$disk = "public"; (/storage/app/public) or config('app.default_storage_disk')
instead of use "Storage::disk('s3')", use Storage::disk($disk)
I say it because of what I saw in the code since I did not find how to change the filesystem and use my local instead of s3
thanks
The text was updated successfully, but these errors were encountered: