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
Try adding these?:
Forms\Components\FileUpload::make('video')
->disk('s3')
->directory('mydir/videos')
->visibility('public')
->moveFiles(true) // this
Share some code. We don't know your configuration