Recommendation on strategy
Can we use Filtering widget data on livewire components ?
limit record
SelectAction in table header not working
Spatie Team ID v Filament Tenancy timing
Adding a note on top of a form
<x-filament::section :has-components="(bool) $getChildComponentContainer()->getFlatComponents()" ... />
...
Custom theme problem for tailwind v4 (Failed to find 'tailwindcss/base')
Is filament's profile page email validation broken?
email
rule which is quite permissive. You maybe want to change that to email:rfc
and/or email:dns
What caused the Collection::clone does not exist?
Increasing the speed on the ToggleColumn?
Avoid Extra Requests for Select->native(false)
native(false)
select triggers a Livewire getFormSelectOptions
request every time it's opened, even if the options are static. Is there a way to avoid these unnecessary requests while keeping native(false)
?What causes the tailwind elements not to get loaded?

N+1 Query for Text Column in Tables
Validation failed Even valid email

Problem with repeater inside action (one to many relation)

Issues with markdown editor being populated

Know if the file type is a csv-UTF-8 before importing
Why do I get Unable to locate file in Vite manifest: resources/css/filament/manage/theme.css ?
Unable to locate file in Vite manifest: resources/css/filament/manage/theme.css.
Even though my file path is correct.
vite.config.js...
Testing Builders
How are people storing tenant-specific settings?
Tenant
model), how are people storing/configuring tenant-specific settings? Usually I'd reach for something like spatie/laravel-settings and the related Filament plugin, but it's not tenant-aware and so the settings end up being global settings (e.g. settings that I would set to control the entire site, rather than being configurable by each individual tenant).
How are people addressing this problem? I'd rather not have 100 different columns on each Tenant
object if I don't have to, and I'd rather use a package than roll my own if possible. I can't imagine that I'm the first person to encounter an issue like this so I'm curious how others solved it.
Thanks...