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
In my .env I have FILESYSTEM_DISK=s3 and when I do Storage::put('filename.txt', 'zzz') through php artisan tinker filename.txt is created on my S3 bucket as I'd expect.
laravel-filemanager, otoh, does not appear to use Laravel's build in filesystem abstraction. Case in point: in spite of what FILESYSTEM_DISK is set to creating a new directory created the new directory on the local filesystem vs in my S3 bucket.
The text was updated successfully, but these errors were encountered:
In my .env I have
FILESYSTEM_DISK=s3
and when I doStorage::put('filename.txt', 'zzz')
throughphp artisan tinker
filename.txt is created on my S3 bucket as I'd expect.laravel-filemanager, otoh, does not appear to use Laravel's build in filesystem abstraction. Case in point: in spite of what FILESYSTEM_DISK is set to creating a new directory created the new directory on the local filesystem vs in my S3 bucket.
The text was updated successfully, but these errors were encountered: