OnyxException
“Undefined array key 0” when uploading an image
What I’m trying to do and why
I’m building an admin interface with Laravel 12, Filament 3.3 to manage my menu categories. Each category should optionally have a cover image:
What I did so far
- Added the cover_image column via migration and included it in my Category model’s $fillable.
- Ran php artisan view:clear, config:clear, etc.
- Enforced single-file upload with multiple(false) and maxFiles(1).
- created a single resource just for file uploads to test it
Still, the upload process fails with:
Relevant parts of my setup
Question:
How can I configure the FileUpload so that Filament/Livewire handles cover_image without throwing “Undefined array key 0”? Any guidance or tips are greatly appreciated!
3 replies