Simon
Allow comma sign in TagsInput
@bernhard the TagsInput accepts a
->splitKeys([])
(at least in v3) method which means it will ONLY use Enter
unless you define some other keys in that array, e.g.
I just tested this myself on v3 and without the splitKeys
method I am able to use a comma in my tags without it completing a tag3 replies
SpatieMediaLibraryFileUpload not working on $this->form->fill() after upgrading to v3
I've not seen any references to casting this in the model or any referencing to casting in the docs of either the Filament wrapper or the Spatie Media Library package...
The way the model registers its interest in managing media library uploads is by implementing the
Spatie\MediaLibrary\HasMedia
interface and using the Spatie\MediaLibrary\InteractsWithMedia
trait
My model overrides the registerMediaCollections()
method as needed to create the following photo
media collection:
This all worked in Filament v2 and I can't find any reference to anything changing (either that has changed or should change) that would cause this to stop working6 replies