Steelheart
Has anyone implemented Filamentv3 with tenancyfolaravel https://tenancyforlaravel.com/
One thing to be aware of is that depending on your use case you may not need to make Filament aware of the multi-tenant nature of your app at all.
If you're using subdomains for tenancy identification you likely don't need to use the Filament tenancy options at all and it will keep things much simpler.
13 replies
Table performance improvements tips?
I am a noob at this 🙂 But this is a plain vanilla Laravel/Filament install and all I did was run
php artisan make:filament-resource Job --generate
the job table has maybe 18 columns total. For this use case it's fine really, even if it takes 1 second to load as it's just the admin side of Larajobs.
Trying to make Livewire/Filament work for a much larger project that I've been going back and forth on tech stack on though. I'm not too worried about it for now. There's really only a few key spots in that app where maximum speed is critical and I could always use a custom table for those cases to avoid this while still using Filament tables for the standard crud actions throughout the app that are super annoying to build and Filament would make go much faster.35 replies