FileUpload tmp to S3 but permanent file to storage/public/*

FileUpload posts the tmp files to S3 but the permanent files still end up in storage/public/* How is this even possible
2 Replies
Dimitar
Dimitar2w ago
Try adding these?: Forms\Components\FileUpload::make('video') ->disk('s3') ->directory('mydir/videos') ->visibility('public') ->moveFiles(true) // this
Dennis Koch
Dennis Koch2w ago
Share some code. We don't know your configuration

Did you find this page helpful?