John
Filament Form: Dynamic additional_fields values not being saved properly
That
getAdditionalFieldsAttribute
and setAdditionalFieldsAttribute
is old Laravel syntax. On which version are you? Is it still supported? You can simply add a cast to your model:
Also, you don't need to ->dehydrate(true)
and I don't know if that interferes with default behaviour. But maybe that's from testing stuff.4 replies
Relation Manager not loading sometimes
Hmm, I'm not sure how browser cache is involved in this. Only thing I can come up with is that you're missing "key" fields on certain Livewire components / parts so it cannot match the client parts with new server parts?
4 replies
Spatie Translatable + #[Reactive] RelationManager + Lazy loading bug?
I allready added an issue here: https://github.com/filamentphp/filament/issues/15301, including reproduction repo
4 replies
Custom field with multiple checkboxes
Eventually I found out that I can use
in the custom layout component blade, instead of
@foreach ($getChildComponents() ...
{{ $getChildComponentContainer() }}
.
Now I can apply my custom layout/styling "inside"/"between" the default or custom components provided by ->schema([...])
, instead of only "around" the fully rendered set of child components.22 replies
Moving route registration removes theme css styling
After some more investigation:
Every request hits
Filament::registerViteTheme()
in service provider. Also the broken theme request.
But; the broken page only loads /filament/assets/app.css?id=ceb9a486dfc44ebe8adaa3bd510821e8
in network tab.
While all other pages load http://[::1]:5173/resources/css/filament.css
(and a bunch of custom stuff I put in the service provider).9 replies