Dan Harrin

Results 529 comments of Dan Harrin

Does `->constantState(fn () => $this->someData)` work?

Please make the reproduction repo public, and I will reopen this if you @ me

Yes, no need to ask when it is marked as Bug, especially `help wanted` :)

I am sorry @giacomomasseron I do not understand what you meant there

The fix is to use the default label (generated from attribute name) for the validation attribute when an `Htmlable` object is used as the label, still allowing `validationAttribute()` to be...

This one is a tricky one to fix, Filament is expecting that after an action is mounted, the Livewire component's current action is the same one that you just mounted,...

In Filament, you can use a `SelectFilter` to filter a list based on *which* record they are related to: ```php SelectFilter::make('author') ->relationship('author', 'name') ``` This is going to produce options...

If both record 1 and record 3 have the same label, how is the user supposed to differentiate between them when selecting the correct option? Also, they may select "Writer"...