FileUpload Not storing to DB

I've setup a file upload called 'avatar', the image seems to upload fine as inside my docker container, inside my path in storage/ I can view (although it saves as a .webp extension instead of the .jpg I uploaded?

But the url should store into my DB correct? It wont save and not sure what im missing.

                        Forms\Components\FileUpload::make('avatar')
                            ->image()
                            ->disk('local')
                            ->directory('offers'),
Was this page helpful?