Filesystem and Uploading
Configuration
DISKS = {
"default": "local",
"local": {
"driver": "file",
"path": os.path.join(os.getcwd(), "storage/framework/filesystem")
#
},
"s3": {
"driver": "s3",
"client": os.getenv("AWS_CLIENT"),
"secret": os.getenv("AWS_SECRET"),
"bucket": os.getenv("AWS_BUCKET"),
"path": "https://bucket.s3.us-east-2.amazonaws.com"
},
}Default
Local Driver
Option
Description
S3 Driver
Option
Description
Uploading Files
Method
Description
Uploading Form Files
Asset Helper
Displaying Files
Multiple Paths
Last updated