File Upload not working on s3

What I'm trying to do:
I want to store my uploads to AWS S3.

What I did:
FILESYSTEM_DISK=s3
QUEUE_CONNECTION=database
FILAMENT_FILESYSTEM_DISK=s3


Forms\Components\FileUpload::make('cover_image')
                    ->image()
                    ->directory('events')
                    ->required(),


The Issue
The upload works but when submitted the file is not appearing
the livewire-tmp appears on s3 but once hit submit it disappears and nothing is stored.

the filename is being stored but the file is not existent on the s3 thus making it not appear
image.png
Was this page helpful?