mathieutu
Help Us Improve Filament’s Docs & Education in v4
I second that the "advanced components" episodes are great, and do have content that you can't find (easily) in the written documentation.
69 replies
Help Us Improve Filament’s Docs & Education in v4
Thanks for your work about that!
On my side (experienced laravel/vue/react user and contributor, and pretty new to livewire and filament (several months)), I miss:
- real life cycle schemas with examples to understand what's really happening and when (in components, resources, forms, etc),
- not especially expecting people to be Livewire masters when starting with Filament.
- examples of customisation, to exit the basic crud, including more details about using the components outside of resources. (In standard blade views, for example)
- explanations how to get hot reloading, custom scripts, and a proper tailwind setup to use our own classes (focused around built theme, that seamed irrelevant to me, I ended up adding directly vite directive in Render hooks).
- Links between all the filament packages. When you get the whole thing, you have to switch between all the categories and rummage around to find the information you're missing, with bits and pieces in several places.
- in place documentation: each public function in Laravel has a comment with some doc. I miss that in Filament.
- Free documentation. I really understand the need of having a business model, but it's difficult to help people get started with paid content (thinking of Laracast)
- Content about what's happening behind the scene technicaly, to reduce the magic feeling.
69 replies
Weird behavior (component replaced by string) when livewire update.
I managed to fix the issue. The component needs to be in the layout and not in the view (which was my case). I can't explain why it changes anything, but I'm no Livewire expert at all... 😕
7 replies
Simple repeater and $get
No need to query the dB here. But just to have the same result when using $get and getState() on the same form.
Good to know, thanks! But my project is well started, so I'll see and update when the new version will come.
6 replies
Replicate with relationship repeater updates original relation records but doesn't create new ones
@toeknee not sure to have understood. When looking at the executed queries, we clearly see that:
- A query is made to update the previous items (children). I think it's not linked to the ReplicateAction, but the Repeater.
- No new items are created. The new invoice (parent) has no items at all.
8 replies
Replicate with relationship repeater updates original relation records but doesn't create new ones
Thanks for the answer.
My goal is to not touch the current records, but to create new ones.
By submitting the action, the original relationship items are updated, but not created at all.
8 replies
Computed state in form fields.
Yep, but it's not handy when you play with a lot of fields.
I'm used to modern frontend framework like React, Vue and Svelte, where you can derive your state from other fields easily.
The Placeholder component is working well, but it would be great to have that to all components.
For a select you can compute the options easily, why not for its state?
4 replies