Unable to check existence for: item_photos

Hello - I am having an issue with file uploads in forms. I get the error above thrown from League\Flysystem\UnableToCheckDirectoryExistence. This started recently. I have tried updating all dependencies but no luck. What's even more strange is that I only get this locally - not in staging or production.

I use an S3 bucket for local testing and I have checked that the bucket is publicly accessible.

For context, this is a standard Filament resource using the form from the ItemResource class.

FileUpload::make('image')
  ->columnSpanFull()
  ->disk('s3')
  ->visibility('public')
  ->directory('item_photos')
Was this page helpful?