FilamentF
Filament10mo ago
6 replies
Patrick Stephan

Cannot upload files to Laravel Cloud Bucket

I have an app where I am attempting to deploy a test environment to Laravel cloud. I have the app deployed and running, but the buckets do not appear to be working with the application.

I have a public bucket setup so that it maps to filament uploads disk, the livewire tmp upload disk, and the application filesystem disks. However, when I attempt to upload a file using a Filament form and the FileUpload component, I just get a hanging "Uploading" status and the file never actually uploads. This is for the initial upload and not the actual submission of the form. The uploading works locally, on a non-laravel-cloud environment, and in production. The Bucket has public visibility.

I am using a CreateAction with this components in the form:
FileUpload::make('file')
    ->storeFiles(false)
    ->maxSize(100 * 1024)
    ->required(),


The attached image shows what I get. Any ideas what is going on?
CleanShot_2025-03-19_at_13.26.24.gif
Was this page helpful?